Skip to content

Commit d438ede

Browse files
committed
Alot of modifications here and there.
1 parent 08aa088 commit d438ede

39 files changed

+164
-106
lines changed

Icon_gimp.xcf

95.4 KB
Binary file not shown.

androidwversionmanager/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ repositories {
2929
dependencies {
3030
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
3131
implementation 'org.thoughtcrime.ssl.pinning:AndroidPinning:1.0.0'
32-
implementation 'androidx.appcompat:appcompat:1.1.0'
32+
implementation 'androidx.appcompat:appcompat:1.2.0'
33+
implementation 'com.google.android.material:material:1.3.0-alpha03'
3334
}

androidwversionmanager/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<application
77
android:label="@string/app_name"
8-
android:theme="@style/AppTheme" >
8+
android:theme="@style/Material" >
99
</application>
1010

1111
</manifest>

androidwversionmanager/src/main/res/values-v11/styles.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,29 @@
44
Base application theme for API 11+. This theme completely replaces
55
AppBaseTheme from res/values/styles.xml on API 11+ devices.
66
-->
7-
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
7+
<style name="AppBaseTheme" parent="@style/Theme.MaterialComponents">
88
<!-- API 11 theme customizations can go here. -->
99
</style>
1010

11+
12+
<style name="DialogStyle" parent="@style/Theme.MaterialComponents.Dialog.Alert">
13+
<item name="buttonBarNegativeButtonStyle">@style/NegativeButtonStyle</item>
14+
<item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item>
15+
<item name="android:textColorLink">#476CCD</item>
16+
<item name="android:windowEnterAnimation">@android:anim/fade_in</item>
17+
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
18+
19+
<item name="android:windowNoTitle">true</item>
20+
<item name="windowActionBar">false</item>
21+
<item name="android:windowContentOverlay">@null</item>
22+
</style>
23+
24+
<style name="NegativeButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
25+
<item name="android:textColor">#FFFFFF</item>
26+
</style>
27+
28+
<style name="PositiveButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
29+
<item name="android:textColor">#FFFFFF</item>
30+
</style>
31+
1132
</resources>

androidwversionmanager/src/main/res/values-v14/styles.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,28 @@
55
AppBaseTheme from BOTH res/values/styles.xml and
66
res/values-v11/styles.xml on API 14+ devices.
77
-->
8-
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
8+
<style name="AppBaseTheme" parent="@style/Theme.MaterialComponents">
99
<!-- API 14 theme customizations can go here. -->
1010
</style>
1111

12+
<style name="DialogStyle" parent="@style/Theme.MaterialComponents.Dialog.Alert">
13+
<item name="buttonBarNegativeButtonStyle">@style/NegativeButtonStyle</item>
14+
<item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item>
15+
<item name="android:textColorLink">#476CCD</item>
16+
<item name="android:windowEnterAnimation">@android:anim/fade_in</item>
17+
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
18+
19+
<item name="android:windowNoTitle">true</item>
20+
<item name="windowActionBar">false</item>
21+
<item name="android:windowContentOverlay">@null</item>
22+
</style>
23+
24+
<style name="NegativeButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
25+
<item name="android:textColor">#FFFFFF</item>
26+
</style>
27+
28+
<style name="PositiveButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
29+
<item name="android:textColor">#FFFFFF</item>
30+
</style>
31+
1232
</resources>

androidwversionmanager/src/main/res/values/styles.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Base application theme, dependent on API level. This theme is replaced
55
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
66
-->
7-
<style name="AppBaseTheme" parent="android:Theme.Light">
7+
<style name="Material" parent="@style/Theme.MaterialComponents">
88
<!--
99
Theme customizations available in newer API levels can go in
1010
res/values-vXX/styles.xml, while customizations related to
@@ -13,7 +13,7 @@
1313
</style>
1414

1515
<!-- Application theme. -->
16-
<style name="AppTheme" parent="AppBaseTheme">
16+
<style name="AppTheme" parent="Material">
1717
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
1818
</style>
1919

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ android {
5353
minSdkVersion 17
5454
targetSdkVersion 29
5555
//noinspection HighAppVersionCode
56-
versionCode 002
57-
versionName "0.0.2"
56+
versionCode 003
57+
versionName "0.0.3"
5858
multiDexEnabled true
5959
}
6060

demo.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"version_code": 99,
3+
"content": "Version 9.9.9 <p> First time KekHunter InApp updater, yass. </P><p>Fixes/Addons</P><li>This is the demo version of the updater</li><li>Some under the hood fixes/modifications :)</li>"
4+
}

ic_launcher-playstore.png

-19.2 KB
Loading

ic_launcher-web.png

73.2 KB
Loading

0 commit comments

Comments
 (0)