Open gdoudeng opened 5 years ago
You can change the build.gradle
in node_modules/react-native-thumbnail
to something similar to this as a temporary fix:
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
minSdkVersion 24
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
}
repositories {
mavenCentral()
google()
}
dependencies {
compile 'com.facebook.react:react-native:+'
}
@gdoudeng Were you able to fix this? Having the same issue here
same issue with react-native@0.59.8
Does anyone find a solution for this. Same in 0.59.8
It's a bit on the hack-y side, but this solution to a similar issue in another RN package worked for me.
`Execution failed for task ':react-native-thumbnail:verifyReleaseResources'.