Skip to content

Commit 5bf7fb9

Browse files
committed
Fixed conflicting Android.mk issue
1 parent 74eafdd commit 5bf7fb9

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tehreer-android/build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ android {
4343
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
4444
}
4545

46-
externalNativeBuild {
47-
ndkBuild {
48-
path 'src/main/jni/Android.mk'
49-
}
50-
}
51-
5246
sourceSets {
5347
androidTest {
5448
externalNativeBuild {
@@ -57,6 +51,13 @@ android {
5751
}
5852
}
5953
}
54+
main {
55+
externalNativeBuild {
56+
ndkBuild {
57+
path 'src/main/jni/Android.mk'
58+
}
59+
}
60+
}
6061
}
6162

6263
buildTypes {

0 commit comments

Comments
 (0)