Skip to content

Commit

Permalink
Merge pull request #141 from seelchen/feature/app-size-diff
Browse files Browse the repository at this point in the history
Add analysis to show list of growing apps
  • Loading branch information
VishalNehra committed Dec 31, 2023
2 parents c0fa2d5 + 194ef38 commit f931843
Show file tree
Hide file tree
Showing 24 changed files with 1,533 additions and 65 deletions.
18 changes: 14 additions & 4 deletions app/build.gradle
Expand Up @@ -4,8 +4,9 @@ buildscript {
androidXLifecycleVersion = "2.3.1"
glideVersion = '4.16.0'
fragment_version = "1.3.6"
roomVersion = "2.4.0"
roomVersion = "2.5.2"
billing_version = "6.0.1"
work_version = "2.8.0"
BASE_CLOUD_FUNC = "https://us-central1-useful-cathode-91310.cloudfunctions.net"
BASE_API_STICKER_PACK = "https://us-central1-useful-cathode-91310.cloudfunctions.net/amaze-utils-sticker-pack/"
API_REQ_TRIAL_URI = "/amaze-utils-fdroid-trial-validator"
Expand Down Expand Up @@ -130,6 +131,11 @@ android {
}
}

sourceSets {
// Adds exported schema location as test app assets.
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}

manifestPlaceholders = [ app_display_name:"@string/app_name_launcher"]
}

Expand Down Expand Up @@ -294,13 +300,17 @@ dependencies {
exclude group: 'androidx.core', module: 'core'
exclude group: 'androidx.core', module: 'core-ktx'
}
implementation "androidx.work:work-runtime-ktx:$work_version"

//Detect memory leaks
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'

testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
// For tests
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation "androidx.room:room-testing:$roomVersion"

coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
}
Expand Down

0 comments on commit f931843

Please sign in to comment.