Fix liblinphone_tester

This commit is contained in:
Erwan Croze 2017-04-04 16:12:37 +02:00
parent 07d46848c1
commit 6b0d14614e
2 changed files with 3 additions and 7 deletions

View file

@ -2,9 +2,8 @@ all: copy-files
../gradlew clean ../gradlew clean
../gradlew uninstallDebug ../gradlew uninstallDebug
run-all-tests: all run-all-tests:
../gradlew installDebug ../gradlew :connectedAndroidTest
$(shell adb shell am instrument -r -w org.linphone.tester/org.linphone.tester.TestRunner | tee report.txt)
copy-libs: copy-libs:
rm -rf libs/arm64-v8a rm -rf libs/arm64-v8a

View file

@ -21,7 +21,7 @@ apply plugin: 'com.android.application'
dependencies { dependencies {
compile project(":libLinphoneAndroidSdk") compile project(":libLinphoneAndroidSdk")
compile fileTree(dir: 'libs', include: '*.jar') compile fileTree(dir: 'libs', include: '*.jar')
androidTestCompile project(":libLinphoneAndroidSdk") //androidTestCompile project(":libLinphoneAndroidSdk")
androidTestCompile fileTree(dir: 'libs', include: '*.jar') androidTestCompile fileTree(dir: 'libs', include: '*.jar')
} }
@ -31,9 +31,6 @@ android {
buildToolsVersion "25.0.2" buildToolsVersion "25.0.2"
applicationId getPackageName() applicationId getPackageName()
multiDexEnabled true multiDexEnabled true
ndk {
ldLibs "log"
}
} }
sourceSets { sourceSets {