我只是克隆了这个项目mao-rn-android-kit,并在具有marshmallow 6.0
版本的android设备上进行了调试,但调试失败后我切换了nougat 7.1
版本并且调试成功的设备。
我想在我的设备中运行该克隆项目,即marshmallow 6.0
。我在build.gradle和其他文件中做了很多更改,但它根本没有运行并显示以下错误。
我应该做些什么改变?在克隆项目的以下文件中
**********app/build.gradle**********
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "com.example"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:25.3.1"
compile "com.facebook.react:react-native:+" // From node_modules
compile project(':mao-rn-android-kit')
}
**********android/build.gradle**********
classpath 'com.android.tools.build:gradle:2.3.1'
然而,我的设备中没有安装此项目的apk。此外,我已检查我所有已安装的应用程序和设置,关闭和我的设备,但也无法正常工作。我坚持下去,请帮忙。