Skip to content

Commit

Permalink
Add extract icon script
Browse files Browse the repository at this point in the history
  • Loading branch information
cesaryuan committed Oct 25, 2024
1 parent db01618 commit cb910d1
Show file tree
Hide file tree
Showing 299 changed files with 722 additions and 0 deletions.
201 changes: 201 additions & 0 deletions extract_icons/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,201 @@
package main

import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
"sync"
)

type App struct {
PackageName string `json:"packageName"`
Icon string `json:"icon,omitempty"`
}

type IndexJson struct {
Apps []App `json:"apps"`
Packages map[string][]struct {
ApkName string `json:"apkName"`
} `json:"packages"`
}

func extractApk(apkPath, tempDir string) error {
fmt.Printf("apktool d %s -o %s -f\n", apkPath, tempDir)
cmd := exec.Command("apktool", "d", apkPath, "-o", tempDir, "-f")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()
}

func getManifestInfo(manifestPath string) (string, string, error) {
content, err := ioutil.ReadFile(manifestPath)
if err != nil {
return "", "", err
}

iconRegex := regexp.MustCompile(`android:icon="([^"]+)"`)
packageRegex := regexp.MustCompile(`package="([^"]+)"`)

iconMatch := iconRegex.FindStringSubmatch(string(content))
packageMatch := packageRegex.FindStringSubmatch(string(content))

if len(iconMatch) < 2 || len(packageMatch) < 2 {
return "", "", fmt.Errorf("无法在 AndroidManifest.xml 中找到有效的 icon 路径或包名")
}

iconPath := strings.TrimPrefix(iconMatch[1], "@")
packageName := packageMatch[1]

return iconPath, packageName, nil
}

func findIconFile(resDir, iconName string) (string, error) {
mipmapDirs, err := ioutil.ReadDir(resDir)
if err != nil {
return "", err
}
// get prefix from iconName
prefix := strings.Split(iconName, "/")[0]
iconName = strings.Split(iconName, "/")[1]
prefix = strings.TrimPrefix(prefix, "@")
extensions := []string{"webp", "png", "jpeg", "jpg", "svg", "xml"}

for _, ext := range extensions {
for _, dir := range mipmapDirs {
if strings.HasPrefix(dir.Name(), prefix) {
potentialIcon := filepath.Join(resDir, dir.Name(), iconName+"."+ext)
if _, err := os.Stat(potentialIcon); err == nil {
return potentialIcon, nil
}
}
}
}

return "", fmt.Errorf("无法找到匹配的图标文件")
}

func copyIconFile(iconFile, outputDir, packageName string) (string, error) {
iconExt := filepath.Ext(iconFile)
outputPath := filepath.Join(outputDir, "fdroid", "repo", "icons", packageName+iconExt)

if err := os.MkdirAll(filepath.Dir(outputPath), os.ModePerm); err != nil {
return "", err
}

input, err := ioutil.ReadFile(iconFile)
if err != nil {
return "", err
}

if err := ioutil.WriteFile(outputPath, input, 0644); err != nil {
return "", err
}

return outputPath, nil
}

func processApp(app App, indexJson *IndexJson, mu *sync.Mutex) {

fmt.Printf("Processing app: %s\n", app.PackageName)

apkInfo, exists := indexJson.Packages[app.PackageName]
if !exists || len(apkInfo) == 0 {
fmt.Printf("No APK info found for %s\n", app.PackageName)
return
}

apkFileName := apkInfo[0].ApkName
apkPath := filepath.Join("fdroid", "repo", apkFileName)

if _, err := os.Stat(apkPath); os.IsNotExist(err) {
fmt.Printf("APK file not found: %s\n", apkPath)
return
}

tempDir, err := ioutil.TempDir("", "apk_extract_")
if err != nil {
fmt.Printf("Failed to create temp directory: %v\n", err)
return
}
defer os.RemoveAll(tempDir)

if err := extractApk(apkPath, tempDir); err != nil && err.Error() != "exit status 1" {
fmt.Printf("Failed to extract APK: %v\n", err)
return
}

manifestPath := filepath.Join(tempDir, "AndroidManifest.xml")
iconName, packageName, err := getManifestInfo(manifestPath)
if err != nil {
fmt.Printf("Failed to get manifest info: %v\n", err)
return
}

resDir := filepath.Join(tempDir, "res")
iconFile, err := findIconFile(resDir, iconName)
if err != nil {
fmt.Printf("Failed to find icon file: %v\n", err)
return
}

outputPath, err := copyIconFile(iconFile, ".", packageName)
if err != nil {
fmt.Printf("Failed to copy icon file: %v\n", err)
return
}

fmt.Printf("Icon extracted successfully for %s: %s\n", app.PackageName, outputPath)

mu.Lock()
app.Icon = filepath.Base(outputPath)
mu.Unlock()
}
func main() {
data, err := ioutil.ReadFile("fdroid/repo/index-v1.json")
if err != nil {
fmt.Printf("Failed to read index JSON: %v\n", err)
return
}

var indexJson IndexJson
if err := json.Unmarshal(data, &indexJson); err != nil {
fmt.Printf("Failed to parse index JSON: %v\n", err)
return
}

var wg sync.WaitGroup
var mu sync.Mutex
semaphore := make(chan struct{}, 4) // 限制同时运行的线程数为 5

for _, app := range indexJson.Apps {
if app.Icon == "" {
wg.Add(1)
semaphore <- struct{}{} // 获取信号量
go func(app App) {
defer wg.Done()
defer func() { <-semaphore }() // 释放信号量
processApp(app, &indexJson, &mu)
}(app)
}
}

wg.Wait()

updatedData, err := json.MarshalIndent(indexJson, "", " ")
if err != nil {
fmt.Printf("Failed to marshal updated JSON: %v\n", err)
return
}

if err := ioutil.WriteFile("fdroid/repo/index-v1.json", updatedData, 0644); err != nil {
fmt.Printf("Failed to write updated JSON: %v\n", err)
return
}

fmt.Println("Processing completed.")
}
9 changes: 9 additions & 0 deletions fdroid/repo/icons/Cai_Ming_Yu.CacheCleaner.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<vector android:height="800.0dip" android:width="800.0dip" android:viewportWidth="1024.0" android:viewportHeight="1024.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#ffe73b37" android:pathData="M512,301.2m-10,0a10,10 0,1 0,20 0,10 10,0 1,0 -20,0Z" />
<path android:fillColor="#ff39393a" android:pathData="M400.3,744.5c2.1,-0.7 4.1,-1.4 6.2,-2 -2,0.6 -4.1,1.3 -6.2,2zM400.3,744.5c2.1,-0.7 4.1,-1.4 6.2,-2 -2,0.6 -4.1,1.3 -6.2,2z" />
<path android:fillColor="#ffe73b37" android:pathData="M511.8,256.6c24.4,0 44.2,19.8 44.2,44.2S536.2,345 511.8,345s-44.2,-19.8 -44.2,-44.2 19.9,-44.2 44.2,-44.2m0,-20c-35.5,0 -64.2,28.7 -64.2,64.2s28.7,64.2 64.2,64.2 64.2,-28.7 64.2,-64.2 -28.7,-64.2 -64.2,-64.2z" />
<path android:fillColor="#ff39393a" android:pathData="M730.7,529.5c0.4,-8.7 0.6,-17.4 0.6,-26.2 0,-179.6 -86.1,-339.1 -219.3,-439.5 -133.1,100.4 -219.2,259.9 -219.2,439.5 0,8.8 0.2,17.5 0.6,26.1 -56,56 -90.6,133.3 -90.6,218.7 0,61.7 18,119.1 49.1,167.3 30.3,-49.8 74.7,-90.1 127.7,-115.3 39,-18.6 82.7,-29 128.8,-29 48.3,0 93.9,11.4 134.3,31.7 52.5,26.3 96.3,67.7 125.6,118.4 33.4,-49.4 52.9,-108.9 52.9,-173.1 0,-85.4 -34.6,-162.6 -90.5,-218.6zM351.1,383.4c9.2,-37.9 22.9,-74.7 40.6,-109.5a502.1,502.1 0,0 1,63.6 -95.9c17.4,-20.6 36.4,-39.9 56.8,-57.5 20.4,17.6 39.4,36.9 56.8,57.5 24.8,29.5 46.2,61.8 63.6,95.9 17.7,34.8 31.4,71.6 40.6,109.5 8.7,35.8 13.5,72.7 14.2,109.9C637.4,459 577,438.9 512,438.9c-65,0 -125.3,20.1 -175.1,54.4 0.7,-37.2 5.5,-74.1 14.2,-109.9zM260.5,832.6c-9.1,-27 -13.7,-55.5 -13.7,-84.4 0,-35.8 7,-70.6 20.8,-103.2 8.4,-19.8 19,-38.4 31.9,-55.5 9.7,61.5 29.5,119.7 57.8,172.6 -36.4,17.8 -69,41.6 -96.8,70.5zM624.7,747.3c-0.7,-0.3 -1.5,-0.5 -2.2,-0.8 -0.4,-0.2 -0.9,-0.3 -1.3,-0.5 -0.6,-0.2 -1.3,-0.5 -1.9,-0.7 -0.8,-0.3 -1.5,-0.5 -2.3,-0.8 -0.8,-0.3 -1.5,-0.5 -2.3,-0.7l-0.9,-0.3c-1,-0.3 -2.1,-0.7 -3.1,-1 -1.2,-0.4 -2.4,-0.7 -3.5,-1.1l-3,-0.9c-0.2,-0.1 -0.4,-0.1 -0.7,-0.2 -1.1,-0.3 -2.3,-0.7 -3.4,-1 -1.2,-0.3 -2.4,-0.6 -3.5,-0.9l-3.6,-0.9 -3.6,-0.9c-1,-0.3 -2.1,-0.5 -3.1,-0.7 -1.2,-0.3 -2.4,-0.5 -3.6,-0.8 -1.3,-0.3 -2.5,-0.6 -3.8,-0.8h-0.3c-0.9,-0.2 -1.9,-0.4 -2.8,-0.6 -0.4,-0.1 -0.7,-0.1 -1.1,-0.2 -1.1,-0.2 -2.2,-0.4 -3.4,-0.6 -1.2,-0.2 -2.4,-0.4 -3.6,-0.7l-5.4,-0.9c-0.9,-0.1 -1.9,-0.3 -2.8,-0.4 -0.8,-0.1 -1.6,-0.3 -2.5,-0.4 -2.6,-0.4 -5.1,-0.7 -7.7,-1 -1.2,-0.1 -2.3,-0.3 -3.5,-0.4h-0.4c-0.9,-0.1 -1.8,-0.2 -2.8,-0.3 -1.1,-0.1 -2.1,-0.2 -3.2,-0.3 -1.7,-0.2 -3.4,-0.3 -5.1,-0.4 -0.8,-0.1 -1.5,-0.1 -2.3,-0.2 -0.9,-0.1 -1.9,-0.1 -2.8,-0.2 -0.4,0 -0.8,0 -1.2,-0.1 -1.1,-0.1 -2.1,-0.1 -3.2,-0.2 -0.5,0 -1,-0.1 -1.5,-0.1 -1.3,-0.1 -2.6,-0.1 -3.9,-0.1 -0.8,0 -1.5,-0.1 -2.3,-0.1 -1.2,0 -2.4,0 -3.5,-0.1h-13.9c-2.3,0 -4.6,0.1 -6.9,0.2 -0.9,0 -1.9,0.1 -2.8,0.1 -0.8,0 -1.5,0.1 -2.3,0.1 -1.4,0.1 -2.8,0.2 -4.1,0.3 -1.4,0.1 -2.7,0.2 -4.1,0.3 -1.4,0.1 -2.7,0.2 -4.1,0.4 -0.6,0 -1.2,0.1 -1.8,0.2l-7.8,0.9c-1.1,0.1 -2.1,0.3 -3.2,0.4 -1,0.1 -2.1,0.3 -3.1,0.4 -3.2,0.5 -6.4,0.9 -9.5,1.5 -0.7,0.1 -1.4,0.2 -2.1,0.4 -0.9,0.1 -1.7,0.3 -2.6,0.5 -1.1,0.2 -2.3,0.4 -3.4,0.6 -0.9,0.2 -1.7,0.3 -2.6,0.5 -0.4,0.1 -0.8,0.1 -1.1,0.2 -0.7,0.1 -1.4,0.3 -2.1,0.4 -1.2,0.3 -2.4,0.5 -3.6,0.8 -1.2,0.3 -2.4,0.5 -3.6,0.8 -0.2,0 -0.4,0.1 -0.6,0.1 -0.5,0.1 -1,0.2 -1.5,0.4 -1.1,0.3 -2.3,0.6 -3.5,0.9 -1.3,0.3 -2.5,0.6 -3.8,1 -0.4,0.1 -0.9,0.2 -1.4,0.4 -1.3,0.4 -2.7,0.7 -4,1.1 -1.5,0.4 -3,0.9 -4.6,1.3 -1,0.3 -2.1,0.6 -3.1,1 -2.1,0.6 -4.1,1.3 -6.2,2 -0.7,0.2 -1.4,0.5 -2.1,0.7 -15,-27.5 -27.4,-56.4 -37,-86.2 -11.7,-36.1 -19.2,-73.6 -22.5,-111.6 -0.6,-6.7 -1,-13.3 -1.3,-20 -0.1,-1.2 -0.1,-2.4 -0.1,-3.6 -0.1,-1.2 -0.1,-2.4 -0.1,-3.6 0,-1.2 -0.1,-2.4 -0.1,-3.6 0,-1.2 -0.1,-2.4 -0.1,-3.7 18.8,-14 39.2,-25.8 61,-35 36.1,-15.3 74.5,-23 114.1,-23 39.6,0 78,7.8 114.1,23 21.8,9.2 42.2,20.9 61,35v0.1c0,1 0,1.9 -0.1,2.9 0,1.4 -0.1,2.8 -0.1,4.3 0,0.7 0,1.3 -0.1,2 -0.1,1.8 -0.1,3.5 -0.2,5.3 -0.3,6.7 -0.8,13.3 -1.3,20 -3.3,38.5 -11,76.5 -23,113 -9.7,30.3 -22.3,59.4 -37.6,87.1zM761.5,838.2a342.3,342.3 0,0 0,-96.3 -73.2c29.1,-53.7 49.5,-112.8 59.4,-175.5 12.8,17.1 23.4,35.6 31.8,55.5 13.8,32.7 20.8,67.4 20.8,103.2 0,31 -5.3,61.3 -15.7,90z" />
<path android:fillColor="#ffe73b37" android:pathData="M512,819.3c8.7,0 24.7,22.9 24.7,60.4s-16,60.4 -24.7,60.4 -24.7,-22.9 -24.7,-60.4 16,-60.4 24.7,-60.4m0,-20c-24.7,0 -44.7,36 -44.7,80.4 0,44.4 20,80.4 44.7,80.4s44.7,-36 44.7,-80.4c0,-44.4 -20,-80.4 -44.7,-80.4z" />
</vector>
Binary file added fdroid/repo/icons/Hook.JiuWu.Xp.webp
Binary file not shown.
Binary file added fdroid/repo/icons/akhil.alltrans.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/androidx.top.hyperos.dynamic.notify.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<vector android:height="108.0dip" android:width="108.0dip" android:viewportWidth="600.0" android:viewportHeight="600.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/colorAccent" android:pathData="m215.28,172.36l69.35,-47.77l73.52,14.57l51.29,60.9l36.93,132.9l3.53,13.36a193.57,183.03 0,0 1,-41.21 4.17c-104.93,0 -190.37,-79.28 -193.4,-178.13l-0.02,0z" android:strokeWidth="1.0" />
<path android:fillColor="@color/colorPrimary" android:pathData="m191.63,382.84l0.8,0c14.77,0 26.74,11.34 26.74,25.37a26.79,25.33 0,0 1,-28.31 25.33l-21.63,0a57.34,54.21 0,0 1,-50.52 -28.25a55.31,52.3 0,0 1,2.15 -53.95l2.15,-3.19a214.57,202.89 0,0 0,34.31 -110.44l0,-1.67a13.63,12.89 0,0 1,-0.04 -1.08l0,-4.07a16.77,15.86 0,0 1,0.15 -1.89a138.71,131.15 0,0 1,42.95 -88.95a143.03,135.24 0,0 1,99.62 -37.91c37.34,0 72.73,13.46 99.62,37.91a138.71,131.15 0,0 1,42.95 88.95a16.9,15.98 0,0 1,0.13 1.89l0,3.5c0.04,0.61 0.02,1.22 -0.02,1.81l0,1.48a214.55,202.87 0,0 0,34.29 110.46l2.15,3.19c11.27,16.53 12.08,36.69 2.15,53.95a57.34,54.21 0,0 1,-50.52 28.25l-129.53,0a26.79,25.33 0,0 1,-30.59 -25.12c0,-13.86 11.72,-25.12 26.25,-25.37l0,-0.14l109.49,0c9.31,0 17.46,-4.55 21.8,-12.16a23.39,22.12 0,0 0,-0.9 -22.73l-1.76,-2.6a198.3,187.5 0,0 1,-31.39 -106.03c-1.25,-47.16 -43.43,-85.5 -94.12,-85.5s-92.87,38.34 -94.1,85.5l0,4.31a198.3,187.5 0,0 1,-31.41 101.72l-1.76,2.6c-4.73,6.97 -5.07,15.45 -0.92,22.73c4.04,7.07 11.35,11.48 19.82,12.09zM230.37,457.2l128.99,0a21.5,20.33 0,0 1,0 40.65l-128.99,0a21.5,20.33 0,0 1,0 -40.65z" android:strokeWidth="1.0" />
</vector>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cat.app.bicleaner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cc.aoeiuv020.hookcimoc.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cc.aoeiuv020.hookfanqie.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cc.aoeiuv020.hookpicacg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/cc.aoeiuv020.iamnotdisabled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/chili.xposed.chimi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/club.youppgd.adhook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions fdroid/repo/icons/cn.ac.lz233.tarnhelm.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/cn.amamiya.douyurepeat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cn.amamiya.hupublacklist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cn.android.x.webp
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cn.aodlyric.xiaowine.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file not shown.
Binary file added fdroid/repo/icons/cn.enaium.bb.webp
Binary file not shown.
Binary file added fdroid/repo/icons/cn.enaium.fuckmarket.webp
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cn.fuckhome.xiaowine.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/white" />
<foreground android:drawable="@drawable/ic_launcher_fore" />
</adaptive-icon>
Binary file added fdroid/repo/icons/cn.fyyr.noguardpls.webp
Binary file not shown.
Binary file added fdroid/repo/icons/cn.geektang.privacyspace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cn.jackuxl.boarddeephook.webp
Binary file not shown.
Binary file added fdroid/repo/icons/cn.kwaiching.hook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cn.lliiooll.ppbuff.webp
Binary file not shown.
Binary file added fdroid/repo/icons/cn.lliiooll.pphelper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cn.lyric.getter.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/cn.myflv.noactive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cn.tinyhai.ban_uninstall.webp
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cn.wankkoree.xp.portrait2landscape.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
6 changes: 6 additions & 0 deletions fdroid/repo/icons/cn.wankkoree.xp.webviewpp.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/cn.wwl.xposed.hook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/cn.xihan.qdds.webp
Binary file not shown.
Binary file added fdroid/repo/icons/com.agoines.relaxhelp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/com.akari.ppx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/com.alex193a.checkblue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/com.alex193a.gmdtenabler.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/com.alex193a.larryonx.webp
Binary file not shown.
Binary file added fdroid/repo/icons/com.alex193a.opacextender.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.alex193a.tguseridviewer.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.android1500.androidfaker.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>
5 changes: 5 additions & 0 deletions fdroid/repo/icons/com.android1500.gpssetter.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/com.asameer.killappnow.webp
Binary file not shown.
7 changes: 7 additions & 0 deletions fdroid/repo/icons/com.asyjaiz.A12blur.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.berdik.letmedowngrade.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
7 changes: 7 additions & 0 deletions fdroid/repo/icons/com.berdik.macsposed.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/com.bit747.clipboardfilter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.chrxw.purenga.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
7 changes: 7 additions & 0 deletions fdroid/repo/icons/com.close.hook.ads.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/b" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.coderstory.flyme.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.coderstory.flyme10.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/com.coolest.toolbox.webp
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.darkeyes.tricks.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/com.douban.fuckad.webp
Binary file not shown.
Binary file not shown.
Binary file added fdroid/repo/icons/com.dualguard.webp
Binary file not shown.
Binary file added fdroid/repo/icons/com.example.vcam.webp
Binary file not shown.
Binary file added fdroid/repo/icons/com.ext.star.wars.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/com.fankes.coloros.notify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fdroid/repo/icons/com.fankes.forcerotate.png
Binary file added fdroid/repo/icons/com.fankes.miui.notify.png
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.fankes.tsbattery.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file added fdroid/repo/icons/com.fastmo.xhs.webp
Binary file not shown.
Binary file added fdroid/repo/icons/com.fkzhang.qqxposed.png
Binary file added fdroid/repo/icons/com.fkzhang.wechatxposed.png
Binary file added fdroid/repo/icons/com.fuck.android.rimet.png
Binary file not shown.
Binary file not shown.
Binary file added fdroid/repo/icons/com.gauravssnl.radiobox.webp
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions fdroid/repo/icons/com.gswxxn.camerasnap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Loading

0 comments on commit cb910d1

Please sign in to comment.