snippet-timekeeper/snippet/build.gradle

43 строки
1.1 KiB
Groovy

apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
android {
compileSdkVersion 31
buildToolsVersion "30.0.3"
defaultConfig {
minSdkVersion 16
targetSdkVersion 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree (dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId = 'com.microsoft'
artifactId = 'snippet'
version = "1.0"
}
}
}
}