import java.time.LocalDateTime import java.time.format.DateTimeFormatter apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'com.google.android.gms.oss-licenses-plugin' android { compileSdkVersion 30 buildToolsVersion "30.0.1" defaultConfig { applicationId "eu.smoser.libraryathome" minSdkVersion 23 targetSdkVersion 30 versionCode 1 versionName "1.0" multiDexEnabled true testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" resValue "string", "version", getVersion() } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation 'androidx.core:core-ktx:1.3.0' implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'com.google.android.material:material:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0' implementation 'androidx.navigation:navigation-ui-ktx:2.3.0' implementation 'com.journeyapps:zxing-android-embedded:3.6.0@aar' implementation 'com.google.zxing:core:3.3.2' implementation 'com.android.volley:volley:1.1.1' implementation 'com.google.code.gson:gson:2.8.5' implementation 'androidx.preference:preference:1.1.1' implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' } static def getVersion() { def version = "„Library at Home“ Version " version += LocalDateTime.now().format(DateTimeFormatter.BASIC_ISO_DATE) + "." def proc = "git log --format=\"%h\" -n 1".execute() proc.in.eachLine { line -> version += line } proc.err.eachLine { line -> println line } proc.waitFor() version }