|
|
@ -1,5 +1,6 @@ |
|
|
|
apply plugin: 'com.android.application' |
|
|
|
apply plugin: 'com.android.application' |
|
|
|
apply plugin: 'com.neenbedankt.android-apt' |
|
|
|
apply plugin: 'com.neenbedankt.android-apt' |
|
|
|
|
|
|
|
apply plugin: 'com.getkeepsafe.dexcount' |
|
|
|
|
|
|
|
|
|
|
|
android { |
|
|
|
android { |
|
|
|
compileSdkVersion 23 |
|
|
|
compileSdkVersion 23 |
|
|
@ -43,6 +44,14 @@ android { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dexcount { |
|
|
|
|
|
|
|
includeClasses = false |
|
|
|
|
|
|
|
includeFieldCount = false |
|
|
|
|
|
|
|
printAsTree = true |
|
|
|
|
|
|
|
orderByMethodCount = true |
|
|
|
|
|
|
|
verbose = false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
dependencies { |
|
|
|
compile 'com.android.support:palette-v7:23.0.1' |
|
|
|
compile 'com.android.support:palette-v7:23.0.1' |
|
|
|
compile 'com.android.support:appcompat-v7:23.0.1' |
|
|
|
compile 'com.android.support:appcompat-v7:23.0.1' |
|
|
@ -54,7 +63,6 @@ dependencies { |
|
|
|
apt 'com.google.dagger:dagger-compiler:2.0.1' |
|
|
|
apt 'com.google.dagger:dagger-compiler:2.0.1' |
|
|
|
compile 'com.jakewharton:butterknife:7.0.1' |
|
|
|
compile 'com.jakewharton:butterknife:7.0.1' |
|
|
|
|
|
|
|
|
|
|
|
// Only Lightning Plus needs the proxy libraries |
|
|
|
|
|
|
|
compile 'net.i2p.android:client:0.7' |
|
|
|
compile 'net.i2p.android:client:0.7' |
|
|
|
|
|
|
|
|
|
|
|
// Use the following code to update the libnetcipher submodule |
|
|
|
// Use the following code to update the libnetcipher submodule |
|
|
@ -66,4 +74,5 @@ dependencies { |
|
|
|
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' |
|
|
|
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' |
|
|
|
|
|
|
|
|
|
|
|
provided 'javax.annotation:jsr250-api:1.0' |
|
|
|
provided 'javax.annotation:jsr250-api:1.0' |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |