mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
34 lines
574 B
Groovy
34 lines
574 B
Groovy
|
apply plugin: 'android-library'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile 'com.google.protobuf:protobuf-java:2.4.1'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 19
|
||
|
buildToolsVersion '19.1.0'
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_7
|
||
|
targetCompatibility JavaVersion.VERSION_1_7
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
sourceSets {
|
||
|
main {
|
||
|
jniLibs.srcDirs = ['libs']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
tasks.whenTaskAdded { task ->
|
||
|
if (task.name.equals("lint")) {
|
||
|
task.enabled = false
|
||
|
}
|
||
|
}
|