Skip to content

Commit

Permalink
Merge pull request #472 from UseHover/qa
Browse files Browse the repository at this point in the history
v1.10.1
  • Loading branch information
alexosugo authored May 11, 2022
2 parents c35f8de + c736518 commit 93bd147
Show file tree
Hide file tree
Showing 134 changed files with 3,900 additions and 2,030 deletions.
1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 9 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ android {
applicationId "com.hover.stax"
minSdk 21
targetSdk 31
versionCode 128
versionName "1.9.1.3"
versionCode 133
versionName "1.10.1"

vectorDrawables.useSupportLibrary = true
multiDexEnabled true
Expand All @@ -71,7 +71,6 @@ android {

buildTypes {
debug {
buildConfigField "String", "SELF_DESTRUCT", "\"1622450539\""
FirebasePerformance {
instrumentationEnabled false
}
Expand All @@ -80,7 +79,6 @@ android {
release {
minifyEnabled true
shrinkResources true
buildConfigField "String", "SELF_DESTRUCT", "\"1625097599\"" // June 30, 2021
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'

file(keystorePath).with { propertiesFile ->
Expand Down Expand Up @@ -126,11 +124,11 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation "androidx.biometric:biometric:1.1.0"
implementation 'com.google.android.material:material:1.5.0'
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.viewpager:viewpager:1.0.0'
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
implementation 'androidx.work:work-runtime-ktx:2.7.1'
Expand Down Expand Up @@ -163,7 +161,7 @@ dependencies {
implementation 'com.google.firebase:firebase-firestore-ktx'

//auth
implementation 'com.google.android.gms:play-services-auth:20.1.0'
implementation 'com.google.android.gms:play-services-auth:20.2.0'
implementation 'com.google.firebase:firebase-auth-ktx'

implementation 'com.amplitude:android-sdk:2.23.2'
Expand All @@ -174,6 +172,9 @@ dependencies {
implementation 'com.appsflyer:af-android-sdk:6.2.3'
implementation 'com.android.installreferrer:installreferrer:2.2'

implementation 'com.github.bumptech.glide:glide:4.13.0'
kapt 'com.github.bumptech.glide:compiler:4.13.0'

def roomVersion = "2.4.2"
implementation "androidx.room:room-ktx:$roomVersion"
implementation "androidx.room:room-runtime:$roomVersion"
Expand Down
14 changes: 13 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,16 @@
#-renamesourcefileattribute SourceFile

-keep public class com.android.installreferrer.** { *; }
-keep class com.appsflyer.** { *; }
-keep class com.appsflyer.** { *; }
-dontwarn com.appsflyer.**
-keep public class com.google.firebase.messaging.FirebaseMessagingService {
public *;
}

-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
**[] $VALUES;
public *;
}
-dontwarn com.bumptech.glide.load.resource.bitmap.VideoDecoder
Loading

0 comments on commit 93bd147

Please sign in to comment.