kalker/mobile/android/app/build.gradle

60 lines
1.9 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
2021-05-27 16:57:53 +02:00
def version = System.getenv("APP_VERSION_NAME") ?: "1.0.0"
def parts = version.split('\\.')
def major = parts[0]
def minor = parts[1]
def patch = parts[2]
if (major.size() == 1) major = major + "0"
if (minor.size() == 1) minor = minor + "0"
if (patch.size() == 1) patch = patch + "0"
def code = (major + minor + patch) as Integer
defaultConfig {
applicationId "net.strct.kalker"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
2021-05-27 16:57:53 +02:00
versionCode code
versionName version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
flatDir{
dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
implementation project(':capacitor-android')
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
implementation project(':capacitor-cordova-android-plugins')
}
apply from: 'capacitor.build.gradle'
try {
def servicesJSON = file('google-services.json')
if (servicesJSON.text) {
apply plugin: 'com.google.gms.google-services'
}
} catch(Exception e) {
logger.warn("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}