我在 Chip-Group 部分遇到了问题。Chip和Chip-Group是我第一次使用,所以一定要下载。当我点击下载按钮时。他们问我:“这个操作需要库com.google.android.material:material:+
,你现在要添加这个吗?”如果我按“是”按钮,材料添加正确但有错误。
当我单击运行按钮时出现错误。
apply from: "$rootProject.projectDir/gradle.properties"
apply plugin: 'com.android.application'
android {
compileSdkVersion versions.compileSdk
buildToolsVersion "${versions.buildTools}"
defaultConfig {
applicationId "com.twilio.video.quickstart"
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
versionCode 1
versionName "1.0"
buildConfigField("String",
"TWILIO_ACCESS_TOKEN",
"\"${getSecretProperty("TWILIO_ACCESS_TOKEN", "TWILIO_ACCESS_TOKEN")}\"")
buildConfigField("String",
"TWILIO_ACCESS_TOKEN_SERVER",
"\"${getSecretProperty("TWILIO_ACCESS_TOKEN_SERVER", "https://secure.advcare.info/mobapp/v1.0/adv/")}\"")
buildConfigField("boolean",
"USE_TOKEN_SERVER",
"${getSecretProperty("USE_TOKEN_SERVER", false)}")
}
compileOptions {
sourceCompatibility versions.java
targetCompatibility versions.java
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
// Specify that we want to split up the APK based on ABI
splits {
abi {
// Enable ABI split
enable true
// Clear list of ABIs
reset()
// Specify each architecture currently supported by the Video SDK
include "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
// Specify that we do not want an additional universal SDK
universalApk false
}
}
}
}
如果我从代码中删除材料
('com.google.android.material:material:1.0.0')
我的程序运行正常。
临摹微笑
慕少森
12345678_0001
相关分类