Skip to content

Commit

Permalink
Merge pull request #30 from thongdn/develop
Browse files Browse the repository at this point in the history
fix issue Black screen in arm64-v8a
  • Loading branch information
andreluisjunqueira authored Aug 2, 2019
2 parents 903be50 + 92fbbe6 commit 72e12fc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,36 @@ buildscript {
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
compileSdkVersion 28
buildToolsVersion "28.0.3"

defaultConfig {
minSdkVersion 16
targetSdkVersion 22
targetSdkVersion 28
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
splits {
abi {
reset()
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", 'x86_64'
}
}

// lintOptions {
// abortOnError false
// warning 'InvalidPackage'
// }
}

dependencies {
//compile project(':openCVLibrary310').projectDir = new File(rootProject.projectDir,'../node_modules/react-native-documentscanner-android/android')
compile project(':openCVLibrary310')
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:0.19.+"
compile 'com.google.zxing:core:3.0.1'
compile 'com.android.support:design:23.4.0'
compile 'org.piwik.sdk:piwik-sdk:0.0.4'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'us.feras.mdv:markdownview:1.1.0'
implementation project(':openCVLibrary310')
implementation "com.android.support:appcompat-v7:28.0.0"
implementation "com.facebook.react:react-native:0.19.+"
implementation 'com.google.zxing:core:3.0.1'
implementation 'com.android.support:design:28.0.0'
implementation 'org.piwik.sdk:piwik-sdk:0.0.4'
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
implementation 'us.feras.mdv:markdownview:1.1.0'
}
Binary file not shown.

0 comments on commit 72e12fc

Please sign in to comment.