当前位置: 首页 > 知识库问答 >
问题:

在ABI的NDK toolchains文件夹中找不到带有前缀的工具链

方坚壁
2023-03-14
No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android
buildscript {
repositories {
    jcenter()
    maven {
        url 'https://maven.google.com/'
        name 'Google'
    }
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.2.0'
    classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
    classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    jcenter()
    maven {
        url 'https://maven.google.com/'
        name 'Google'
    }
}
}
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion '28.0.3'

defaultConfig {
    applicationId "com.mxn.soul.flowingdrawer"
    minSdkVersion 14
    targetSdkVersion 28
    versionCode 120
    versionName "1.2.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.squareup.picasso:picasso:2.5.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.nineoldandroids:library:2.4.0'
implementation project(':flowingdrawer-core')
}

共有1个答案

岑畅
2023-03-14

替换

classpath 'com.android.tools.build:gradle:2.2.0'

classpath 'com.android.tools.build:gradle:3.2.0'

在模块级build.gradle文件中。

 类似资料: