Compare commits
1 Commits
master
...
update_ver
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b8ed14a99 |
@ -1,13 +1,13 @@
|
||||
apply plugin: 'com.android.library'
|
||||
apply plugin: 'ivy-publish'
|
||||
|
||||
apply from: '../versions.gradle'
|
||||
|
||||
android {
|
||||
compileSdk 34
|
||||
buildToolsVersion = "34.0.0"
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 14
|
||||
minSdkVersion minSdk
|
||||
targetSdkVersion 34
|
||||
versionCode 2
|
||||
versionName "2.0"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-android'
|
||||
apply from: '../versions.gradle'
|
||||
|
||||
android {
|
||||
compileSdk 34
|
||||
@ -26,7 +27,7 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
applicationId "net.osmand.telegram"
|
||||
minSdkVersion 15
|
||||
minSdkVersion minSdk
|
||||
targetSdkVersion 34
|
||||
multiDexEnabled true
|
||||
versionCode 1
|
||||
@ -179,5 +180,5 @@ dependencies {
|
||||
exclude group: 'com.android.support'
|
||||
}
|
||||
|
||||
implementation 'com.google.android.gms:play-services-location:21.0.1'
|
||||
implementation 'com.google.android.gms:play-services-location:21.3.0'
|
||||
}
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
apply from: '../versions.gradle'
|
||||
|
||||
tasks.register('printc') {
|
||||
configurations.each { if (it.isCanBeResolved()) println it.name }
|
||||
}
|
||||
@ -373,7 +375,7 @@ dependencies {
|
||||
implementation "androidx.car.app:app:1.2.0"
|
||||
implementation "androidx.car.app:app-projected:1.2.0"
|
||||
|
||||
implementation 'com.google.android.gms:play-services-location:21.3.0'
|
||||
implementation 'com.google.android.gms:play-services-location:$play_services_location'
|
||||
|
||||
//implementation "androidx.tracing:tracing:1.1.0"
|
||||
//debugImplementation 'androidx.test:monitor:1.6.1'
|
||||
|
||||
@ -1,13 +1,14 @@
|
||||
apply plugin: 'com.android.library'
|
||||
apply plugin: 'ivy-publish'
|
||||
apply from: 'build-common.gradle'
|
||||
apply from: '../versions.gradle'
|
||||
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 24
|
||||
minSdkVersion minSdk
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
@ -93,5 +94,5 @@ project.afterEvaluate {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.google.android.gms:play-services-location:21.3.0'
|
||||
implementation "com.google.android.gms:play-services-location:$play_services_location"
|
||||
}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
apply plugin: 'com.android.application'
|
||||
apply from: 'build-common.gradle'
|
||||
apply from: '../versions.gradle'
|
||||
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
@ -42,7 +43,7 @@ android {
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 24
|
||||
minSdkVersion minSdk
|
||||
versionCode 4800
|
||||
versionCode System.getenv("APK_NUMBER_VERSION") ? System.getenv("APK_NUMBER_VERSION").toInteger() : versionCode
|
||||
versionName "4.8.0"
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
apply plugin: 'com.android.application'
|
||||
apply from: '../../versions.gradle'
|
||||
|
||||
android {
|
||||
compileSdk 34
|
||||
@ -21,7 +22,7 @@ android {
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 15
|
||||
minSdkVersion minSdk
|
||||
targetSdkVersion 34
|
||||
}
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ android {
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 15
|
||||
minSdkVersion minSdk
|
||||
targetSdkVersion 34
|
||||
}
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
apply plugin: 'com.android.application'
|
||||
apply from: '../../versions.gradle'
|
||||
|
||||
android {
|
||||
compileSdk 34
|
||||
@ -23,7 +24,7 @@ android {
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 15
|
||||
minSdkVersion minSdk
|
||||
targetSdkVersion 34
|
||||
}
|
||||
|
||||
|
||||
4
versions.gradle
Normal file
4
versions.gradle
Normal file
@ -0,0 +1,4 @@
|
||||
ext {
|
||||
play_servises_location = "21.3.0"
|
||||
minSdk = 24
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user