47 lines
1.2 KiB
Groovy
47 lines
1.2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
//apply plugin: 'com.novoda.bintray-release'
|
|
|
|
|
|
android {
|
|
namespace "com.thefinestartist.helpers"
|
|
compileSdkVersion 34
|
|
// buildToolsVersion '23.0.2'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName '0.9.5'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// compile "com.thefinestartist:annotations:${rootProject.ext.versionName}"
|
|
implementation "com.android.support:appcompat-v7:28.0.0"
|
|
implementation "com.android.support:support-annotations:28.0.0"
|
|
implementation 'androidx.annotation:annotation-jvm:1.9.1'
|
|
// implementation project(':annotations')
|
|
// testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
//publish {
|
|
// userOrg = 'thefinestartist'
|
|
// groupId = 'com.thefinestartist'
|
|
// artifactId = 'utils'
|
|
// publishVersion = rootProject.ext.versionName
|
|
// desc = 'Context free and basic utils to build Android project conveniently.'
|
|
// website = 'https://github.com/TheFinestArtist/AndroidBaseUtils'
|
|
//}
|