Skip to content

Commit

Permalink
Merge pull request #453 from UseHover/qa
Browse files Browse the repository at this point in the history
v1.9.1.2
  • Loading branch information
alexosugo authored Apr 21, 2022
2 parents 4107a95 + da78033 commit c35f8de
Show file tree
Hide file tree
Showing 228 changed files with 2,891 additions and 3,871 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ app/.classpath
app/.project
app/.settings/
/app/src/main/res/values/app_keys.xml
.idea/misc.xml

76 changes: 68 additions & 8 deletions .idea/misc.xml

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

35 changes: 20 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import java.nio.file.Paths

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'com.google.firebase.firebase-perf'
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
id 'com.google.firebase.crashlytics'
id 'kotlin-android'
id 'kotlin-kapt'
id 'com.google.firebase.firebase-perf'
id 'androidx.navigation.safeargs'
}


def userHome = Paths.get(System.getProperty('user.home'))
Expand Down Expand Up @@ -42,8 +45,8 @@ android {
applicationId "com.hover.stax"
minSdk 21
targetSdk 31
versionCode 120
versionName "1.9.0.6"
versionCode 128
versionName "1.9.1.3"

vectorDrawables.useSupportLibrary = true
multiDexEnabled true
Expand All @@ -69,6 +72,9 @@ android {
buildTypes {
debug {
buildConfigField "String", "SELF_DESTRUCT", "\"1622450539\""
FirebasePerformance {
instrumentationEnabled false
}
}

release {
Expand All @@ -92,10 +98,6 @@ android {
}
}

lintOptions {
disable 'MissingTranslation'
disable 'ExtraTranslation'
}

buildFeatures {
viewBinding true
Expand All @@ -111,6 +113,9 @@ android {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
lint {
disable 'MissingTranslation', 'ExtraTranslation'
}
}


Expand All @@ -133,7 +138,7 @@ dependencies {
implementation 'androidx.activity:activity-compose:1.4.0'
kapt "androidx.lifecycle:lifecycle-common-java8:2.4.1"

implementation 'androidx.core:core-splashscreen:1.0.0-beta01'
implementation 'androidx.core:core-splashscreen:1.0.0-beta02'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

Expand Down Expand Up @@ -169,7 +174,7 @@ dependencies {
implementation 'com.appsflyer:af-android-sdk:6.2.3'
implementation 'com.android.installreferrer:installreferrer:2.2'

def roomVersion = "2.4.1"
def roomVersion = "2.4.2"
implementation "androidx.room:room-ktx:$roomVersion"
implementation "androidx.room:room-runtime:$roomVersion"
kapt "androidx.room:room-compiler:$roomVersion"
Expand All @@ -188,7 +193,7 @@ dependencies {

// Hover SDK
debugImplementation project(":hover.sdk")
def sdk_version = "2.0.0-stax-1.9.0.3-pro"
def sdk_version = "2.0.0-stax-1.10.1-pro"

releaseImplementation "com.hover:android-sdk:$sdk_version"

Expand Down
Loading

0 comments on commit c35f8de

Please sign in to comment.