tor-android/tor-android-binary/build.gradle

48 lines
1017 B
Groovy
Raw Permalink Normal View History

apply plugin: 'com.android.library'
android {
compileSdkVersion 27
2018-10-11 22:51:11 +02:00
buildToolsVersion '28.0.2'
2018-05-12 05:54:59 +02:00
/**
sourceSets {
main {
jni.srcDirs = []
}
2018-05-12 05:54:59 +02:00
}**/
2016-09-29 18:00:26 +02:00
defaultConfig {
2017-03-02 05:08:48 +01:00
minSdkVersion 16
targetSdkVersion 27
2018-09-06 03:34:25 +02:00
versionCode 34700
versionName "0.3.4.7-rc"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.so'])
}
apply plugin: 'maven'
uploadArchives {
repositories.mavenDeployer {
def deployPath = file(getProperty('aar.deployPath'))
repository(url: "file://${deployPath.absolutePath}")
pom.project {
groupId 'org.torproject'
artifactId 'tor-android-binary'
version "0.3.4.8-2"
}
}
}