Get build working with AAR moonlight-common

This commit is contained in:
Cameron Gutman 2017-05-12 18:22:28 -07:00
parent 5c03295478
commit feafc4ef3c
6 changed files with 4 additions and 15 deletions

View File

@ -38,17 +38,10 @@ android {
buildTypes { buildTypes {
release { release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' proguardFiles getDefaultProguardFile('proguard-android.txt')
} }
} }
// These lines are required to avoid dexing issues with the BouncyCastle library
// bundled with limelight-common.jar
packagingOptions {
exclude 'META-INF/BCKEY.SF'
exclude 'META-INF/BCKEY.DSA'
}
externalNativeBuild { externalNativeBuild {
ndkBuild { ndkBuild {
path "src/main/jni/Android.mk" path "src/main/jni/Android.mk"
@ -59,10 +52,6 @@ android {
dependencies { dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.52' compile 'org.bouncycastle:bcprov-jdk15on:1.52'
compile 'org.bouncycastle:bcpkix-jdk15on:1.52' compile 'org.bouncycastle:bcpkix-jdk15on:1.52'
compile 'com.squareup.okhttp:okhttp:2.4.0' compile project(':moonlight-common')
compile 'com.squareup.okio:okio:1.5.0'
compile files('libs/jmdns-3.4.2.jar')
compile files('libs/limelight-common.jar')
compile files('libs/tinyrtsp.jar')
compile files('libs/jcodec-0.1.9-patched.jar') compile files('libs/jcodec-0.1.9-patched.jar')
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1 +1 @@
Subproject commit 9b3102e8fbfb6e654a51b20d278ddc3574c3571d Subproject commit 03b88230fa489eefd8de809ff12803125baa0edd

View File

@ -1 +1 @@
include ':app' include ':app', ':moonlight-common'