Required changes to gradle for development builds.

This commit is contained in:
meeh
2019-05-29 17:37:48 +00:00
parent 4dccd1dbae
commit 177a2c6dc1
2 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,8 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
repositories {
mavenLocal()
mavenCentral()
}
android { android {
compileSdkVersion 28 compileSdkVersion 28
@ -73,6 +77,7 @@ dependencies {
implementation 'com.inkapplications.viewpageindicator:library:2.4.4' implementation 'com.inkapplications.viewpageindicator:library:2.4.4'
implementation 'com.pnikosis:materialish-progress:1.7' implementation 'com.pnikosis:materialish-progress:1.7'
implementation "net.i2p:router:$I2P_VERSION" implementation "net.i2p:router:$I2P_VERSION"
implementation "net.i2p:i2p:$I2P_VERSION"
implementation 'net.i2p.android.ext:floatingactionbutton:1.10.1' implementation 'net.i2p.android.ext:floatingactionbutton:1.10.1'
implementation 'org.sufficientlysecure:html-textview:3.1' implementation 'org.sufficientlysecure:html-textview:3.1'
// Testing-only dependencies // Testing-only dependencies

View File

@ -1,6 +1,10 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
version = "$I2P_VERSION" version = "$I2P_VERSION"
repositories {
mavenLocal()
mavenCentral()
}
android { android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String) compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String)