extract sweetspot activity into separate module

This commit is contained in:
Vincent Breitmoser
2018-11-20 16:19:31 +01:00
parent e36aab6a97
commit 365cebdc72
14 changed files with 122 additions and 57 deletions

18
nfcsweetspot/build.gradle Normal file
View File

@@ -0,0 +1,18 @@
apply plugin: 'com.android.library'
dependencies {
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion 14
}
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
}
}