@@ -4,16 +4,31 @@ plugins {
44}
55
66android {
7- compileSdk 34
7+ compileSdk 35
8+
9+ def localProperties = new Properties ()
10+ def localPropertiesFile = rootProject. file(" local.properties" )
11+
12+ if (localPropertiesFile. exists()) {
13+ localProperties. load(new FileInputStream (localPropertiesFile))
14+ }
15+
16+ def noteScreenInterstitialAdsId = localProperties. getProperty(" noteScreenInterstitialAdsId" )
17+ def openAdsId = localProperties. getProperty(" openAdsId" )
18+ def nativeAdsId = localProperties. getProperty(" nativeAdsId" )
819
920 defaultConfig {
1021 applicationId " ru.plumsoftware.notebook"
1122 minSdk 22
12- targetSdk 34
13- versionCode 30
14- versionName " 2.0.7 "
23+ targetSdk 35
24+ versionCode 31
25+ versionName " 2.0.8 "
1526
1627 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
28+
29+ buildConfigField " String" , " noteScreenInterstitialAdsId" , " \" ${ noteScreenInterstitialAdsId} \" "
30+ buildConfigField " String" , " openAdsId" , " \" ${ openAdsId} \" "
31+ buildConfigField " String" , " nativeAdsId" , " \" ${ nativeAdsId} \" "
1732 }
1833
1934 buildTypes {
@@ -46,16 +61,16 @@ dependencies {
4661 androidTestImplementation ' androidx.test.espresso:espresso-core:3.6.1'
4762
4863 // Yandex ads
49- implementation ' com.yandex.android:mobileads:7.6 .0'
64+ implementation ' com.yandex.android:mobileads:7.9 .0'
5065
5166 // Glide
5267 implementation ' com.github.bumptech.glide:glide:4.15.1'
5368
5469 // Messaging
55- implementation ' com.google.firebase:firebase-messaging:24.0.3 '
70+ implementation ' com.google.firebase:firebase-messaging:24.1.0 '
5671
5772 // Analytics
58- implementation ' com.google.firebase:firebase-analytics:22.1.2 '
73+ implementation ' com.google.firebase:firebase-analytics:22.2.0 '
5974
6075 // Modules
6176 implementation project(' :app-domain' )
0 commit comments