2016-06-29 04:20:20 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2017-03-02 04:08:48 +00:00
|
|
|
compileSdkVersion 25
|
2017-10-31 13:42:01 +00:00
|
|
|
buildToolsVersion '26.0.2'
|
2016-06-29 04:20:20 +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
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
targetSdkVersion 25
|
2018-03-15 17:30:42 +00:00
|
|
|
versionCode 3210
|
|
|
|
versionName "0.3.2.10"
|
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-03-13 08:51:04 +00:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar','*.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-01-04 03:55:37 +00:00
|
|
|
version "0.3.1.9b"
|
2017-11-17 17:34:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|