-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatible with React Native 0.57 #104
Comments
There's no real breaking change. What I've noticed is that after upgrading to 0.57.0 - android studio somehow compiles against a downloaded package of react 0.20.1. It just went way back. |
Actually there might be some breaking change: react-native-community/releases#34 |
I’m not an expert on Gradle (very far from it), but it seems to me like subprojects { subproject ->
afterEvaluate{
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
// ...
dependencies {
api "com.facebook.react:react-native:${rootProject.ext.reactNativeVersion}"
api "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
}
}
}
} ./gradlew :app:dependencies --scan |
The problem seems to have disappeared with rc.2 |
I am getting the following issue when trying to use with RN 0.57.0 I am using 0.7.0 of react-native-awesome-card-io. `:react-native-awesome-card-io:mergeReleaseConsumerProguardFiles /Users/Neil/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/da52e62d58625b2cb6ef39fcdaacb176/res/values-v26/values-v26.xml:13:5-16:13: AAPT: error: resource android:attr/colorError not found. /Users/Neil/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/da52e62d58625b2cb6ef39fcdaacb176/res/values-v26/values-v26.xml:17:5-93: AAPT: error: style attribute 'android:attr/keyboardNavigationCluster' not found. /Users/Neil/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/da52e62d58625b2cb6ef39fcdaacb176/res/values/values.xml:251:5-69: AAPT: error: resource android:attr/fontStyle not found. /Users/Neil/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/da52e62d58625b2cb6ef39fcdaacb176/res/values/values.xml:251:5-69: AAPT: error: resource android:attr/font not found. /Users/Neil/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/da52e62d58625b2cb6ef39fcdaacb176/res/values/values.xml:251:5-69: AAPT: error: resource android:attr/fontWeight not found. error: failed linking references. |
I just published |
Not surprising since it’s still in RC status, but:
The text was updated successfully, but these errors were encountered: