创建第一个项目时。
请告诉我。如何解决这个问题?
答案 0 :(得分:0)
打开SDK管理器并安装版本27的存储库然后它可以正常工作,您可以检查哪个API级别正确安装,您可以像这样更改为gradle:
smsParent(student, msgCategory, smsButton) {
//call myjava module and upon successful callback call below:
let parEl = this.buttons[smsButton];
React.Children.forEach(parEl.props.children, child => { child.setNativeProps({ style: { color: 'black' } }) });
parEl.setNativeProps({ style: { backgroundColor: 'green' } });
}
如果您的API级别为26,请:
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 18
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.0.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:0.5'
implementation 'com.google.android.gms:play-services:11.8.0'
implementation 'com.google.android.gms:play-services-maps:11.8.0'
implementation 'com.android.support:design:27.0.1'
}
你可以这样改变,那么你的问题就会解决。
答案 1 :(得分:0)
Just click on "install repository and sync project" in your error. It will install the required repository and solve your problem.
答案 2 :(得分:0)
感谢所有同事。按钮"安装存储库并同步项目"不起作用。 已经安装了27个版本。
我将27版改为25版,错误消失了。