2016-06-29 04:20:20 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2018-05-09 16:47:25 +00:00
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion '27.0.3'
|
2016-06-29 04:20:20 +00:00
|
|
|
|
2018-05-12 03:54:59 +00:00
|
|
|
/**
|
2016-10-05 03:46:17 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jni.srcDirs = []
|
2017-06-09 10:08:05 +00:00
|
|
|
|
2016-10-05 03:46:17 +00:00
|
|
|
}
|
2018-05-12 03:54:59 +00:00
|
|
|
}**/
|
2016-09-29 16:00:26 +00:00
|
|
|
|
2016-06-29 04:20:20 +00:00
|
|
|
defaultConfig {
|
2017-03-02 04:08:48 +00:00
|
|
|
minSdkVersion 16
|
2018-05-09 16:47:25 +00:00
|
|
|
targetSdkVersion 27
|
2018-05-09 17:03:56 +00:00
|
|
|
versionCode 32101
|
|
|
|
versionName "0.3.2.10-dev"
|
2016-10-05 03:46:17 +00:00
|
|
|
|
2016-06-29 04:20:20 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-05-09 16:47:25 +00:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.so'])
|
2016-06-29 04:20:20 +00:00
|
|
|
}
|
2017-11-17 17:34:06 +00:00
|
|
|
|
|
|
|
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'
|
2018-05-12 04:10:41 +00:00
|
|
|
version "0.3.3.5-rc-1"
|
2017-11-17 17:34:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|