Android Studio "unused import" 将 SDK 放入 build.gradle 时的消息
Android Studio "unused import" message when putting SDK inside build.gradle
我正在尝试插入一个名为 Mesibo 的 SDK 进行通信,在我的项目中,当我尝试导入时它立即变灰:import com.mesibo.api.mesibo;
并显示消息 cannot resolve symbol 'mesibo'
和 unused import
周围
这是 build.gradle
文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.richard.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'com.mesibo.api:mesibo:1.0.5'
implementation 'com.mesibo.api:calls:1.0.3'
implementation 'com.mesibo.api:ui:1.0.4'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
import com.mesibo.api.mesibo;
我正在关注他们的文档,但由于某种原因,导入停止 gradle 与项目同步。我是 Android Studio 的新手,这是我第一次尝试将 SDK + API 放入。
这在您的 Java/Kotlin 代码中,而不是在 Gradle
中
import com.mesibo.api.mesibo;
所以从那里删除它,然后编译代码,然后将它添加到您需要此 class 的其他源文件中。
而且我认为他们的文档很差...应该是
import com.mesibo.api.Mesibo;
我正在尝试插入一个名为 Mesibo 的 SDK 进行通信,在我的项目中,当我尝试导入时它立即变灰:import com.mesibo.api.mesibo;
并显示消息 cannot resolve symbol 'mesibo'
和 unused import
周围
这是 build.gradle
文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.richard.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'com.mesibo.api:mesibo:1.0.5'
implementation 'com.mesibo.api:calls:1.0.3'
implementation 'com.mesibo.api:ui:1.0.4'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
import com.mesibo.api.mesibo;
我正在关注他们的文档,但由于某种原因,导入停止 gradle 与项目同步。我是 Android Studio 的新手,这是我第一次尝试将 SDK + API 放入。
这在您的 Java/Kotlin 代码中,而不是在 Gradle
中import com.mesibo.api.mesibo;
所以从那里删除它,然后编译代码,然后将它添加到您需要此 class 的其他源文件中。
而且我认为他们的文档很差...应该是
import com.mesibo.api.Mesibo;