You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
Groovy
57 lines
1.1 KiB
Groovy
12 years ago
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
11 years ago
|
classpath 'com.android.tools.build:gradle:0.12.2'
|
||
12 years ago
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
apply plugin: 'com.android.library'
|
||
12 years ago
|
apply plugin: 'maven'
|
||
12 years ago
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven {
|
||
|
url "https://raw.github.com/whispersystems/maven/master/gson/releases/"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
11 years ago
|
compile 'com.google.protobuf:protobuf-java:2.5.0'
|
||
12 years ago
|
compile 'com.madgag:sc-light-jdk15on:1.47.0.2'
|
||
11 years ago
|
compile 'com.googlecode.libphonenumber:libphonenumber:6.1'
|
||
12 years ago
|
compile 'org.whispersystems:gson:2.2.4'
|
||
11 years ago
|
|
||
|
compile project(':libaxolotl')
|
||
12 years ago
|
}
|
||
|
|
||
|
android {
|
||
11 years ago
|
compileSdkVersion 19
|
||
11 years ago
|
buildToolsVersion '19.1.0'
|
||
12 years ago
|
|
||
11 years ago
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_7
|
||
|
targetCompatibility JavaVersion.VERSION_1_7
|
||
|
}
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
11 years ago
|
tasks.whenTaskAdded { task ->
|
||
|
if (task.name.equals("lint")) {
|
||
|
task.enabled = false
|
||
|
}
|
||
|
}
|
||
|
|
||
12 years ago
|
version '0.1'
|
||
|
group 'org.whispersystems.textsecure'
|
||
11 years ago
|
archivesBaseName = 'libtextsecure'
|
||
12 years ago
|
|
||
|
uploadArchives {
|
||
|
repositories {
|
||
|
mavenDeployer {
|
||
|
repository(url: mavenLocal().getUrl())
|
||
|
}
|
||
|
}
|
||
11 years ago
|
}
|