-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from Lauszus/gnustl
Fixed support for Android NDK r18, as gnustl has been removed
- Loading branch information
Showing
9 changed files
with
119 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Mon Apr 16 03:03:10 CEST 2018 | ||
#Sun Dec 16 21:52:50 CET 2018 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,27 @@ | ||
--- build-orig.gradle 2018-04-16 09:10:01.000000000 +0200 | ||
+++ build.gradle 2018-04-16 09:11:53.000000000 +0200 | ||
@@ -121,6 +121,10 @@ | ||
manifest.srcFile 'java/AndroidManifest.xml' | ||
} | ||
} | ||
+ | ||
+ lintOptions { | ||
+ abortOnError false | ||
+ } | ||
} | ||
|
||
dependencies { | ||
diff -crb OpenCV-android-sdk/sdk/build.gradle OpenCV-android-sdk-patch/sdk/build.gradle | ||
*** OpenCV-android-sdk/sdk/build.gradle Sun Dec 16 22:44:27 2018 | ||
--- OpenCV-android-sdk-patch/sdk/build.gradle Sun Dec 16 22:34:33 2018 | ||
*************** | ||
*** 121,126 **** | ||
--- 121,130 ---- | ||
manifest.srcFile 'java/AndroidManifest.xml' | ||
} | ||
} | ||
+ | ||
+ lintOptions { | ||
+ abortOnError false | ||
+ } | ||
} | ||
|
||
dependencies { | ||
diff -crb OpenCV-android-sdk/sdk/java/AndroidManifest.xml OpenCV-android-sdk-patch/sdk/java/AndroidManifest.xml | ||
*** OpenCV-android-sdk/sdk/java/AndroidManifest.xml Fri Feb 23 12:24:24 2018 | ||
--- OpenCV-android-sdk-patch/sdk/java/AndroidManifest.xml Sun Dec 16 22:28:32 2018 | ||
*************** | ||
*** 4,8 **** | ||
android:versionCode="3410" | ||
android:versionName="3.4.1"> | ||
|
||
- <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" /> | ||
</manifest> | ||
--- 4,7 ---- |