-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfinityBuild.sh
executable file
·44 lines (34 loc) · 1.39 KB
/
InfinityBuild.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
## Based on https://colab.research.google.com/drive/13AE8RvjnCfuBJGaACEqxeBIMo33_l-Sc?usp=sharing#scrollTo=BdsYmWoe-O5e
## Please consider supporting u/Hostilenemy for creating this application
## Configuration
VERSION=v7.0.0
USERNAME=<YOUR_USERNAME>
APIKEY=<YOUR_APIKEY>
## Get sources
git clone https://github.com/Docile-Alligator/Infinity-For-Reddit
cd Infinity-For-Reddit
git checkout tags/${VERSION}
## Change Redirect URL, API key and User-Agent
APIUTILS='app/src/main/java/ml/docilealligator/infinityforreddit/utils/APIUtils.java'
sed -i 's/NOe2iKrPPzwscA/'$APIKEY'/g' $APIUTILS
sed -i 's+infinity://localhost+http://127.0.0.1+g' $APIUTILS
sed -i 's+android:ml.docilealligator.infinityforreddit:+android:personal-app:'+g $APIUTILS
sed -i 's+Hostilenemy+Throwaway68252455'+g $APIUTILS
## Add Keystore
wget https://github.com/TanukiAI/Infinity-keystore/raw/main/Infinity.jks
GRADLEBUILD='app/build.gradle'
sed -i "/release {/a \\
signingConfig signingConfigs.release" $GRADLEBUILD
sed -i "/buildTypes {/i \\
signingConfigs { \\
release { \\
storeFile file(\"../Infinity.jks\")\\
storePassword \"Infinity\"\\
keyAlias \"Infinity\"\\
keyPassword \"Infinity\"\\
}\\
}" $GRADLEBUILD
## Build app
./gradlew assembleRelease
## Move APK to TLD and rename
cp app/build/outputs/apk/release/app*.apk Infinity_$VERSION.apk