Skip to content

Commit

Permalink
#3: 1.0 (See changelog.md for details)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitestone8214 committed Mar 22, 2022
1 parent cf7eeed commit c2b8c25
Show file tree
Hide file tree
Showing 5 changed files with 348 additions and 47 deletions.
2 changes: 1 addition & 1 deletion AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="whitestone8214.frontend.minif" android:versionName="0.0">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="whitestone8214.frontend.minif" android:versionName="1.0">
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="29" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
19 changes: 14 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash


# Necessary values
# Necessary value(s)
_here="$(pwd)"
_whereAndroidSDK="/external/0/android-app-development"
_whereKeystore="${HOME}/keystore.jks"
Expand All @@ -11,12 +11,21 @@ _versionSDK="29"
_versionToolchain="30.0.3"


# Function(s)
function clean() {
rm -rf classes.dex outlet proguard_options public_resources.xml sources-*.txt unfinished.apk finished.apk || return 1
for x in $(find . -name R.java); do
rm -f $x || return 1
done
}


# Initialize
echo ":: Initialize"
rm -rf classes.dex outlet proguard_options public_resources.xml sources-*.txt unfinished.apk finished.apk || exit 1
for x in $(find . -name R.java); do
rm -f $x
done
clean || exit 1
if (test "$1" = "justclean"); then
exit 0
fi
mkdir -p assets outlet || exit 1

# R.java
Expand Down
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 1.0 (2022/03/22)

1. Added changelog.md (This file)
2. Now Mini F splits list by 100 apps
3. Now Mini F shows also name and mail address of developer if it exists

## 0.0 (2022/03/21)

1. First release
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mini F
Mini F-Droid client
Version 0.0
Tiny F-Droid client\
Version 1.0

## How to build

Expand All @@ -26,7 +26,7 @@ Version 0.0
1. `adb shell mkdir -p /sdcard/Android/data/whitestone8214.frontend.minif/files`
2. `adb push /path/to/index-v1.jar /sdcard/Android/data/whitestone8214.frontend.minif/files/`
5. Launch Mini F
6. Tap "Load" button on top of window and wait
6. Tap "Load" button on top of window and wait (For me it took about 10 minutes)

## Note

Expand Down
Loading

0 comments on commit c2b8c25

Please sign in to comment.