Aidl Error in Android Studio

Runtime error for task: devsmartAndroid: compileReleaseAidl ':

org.gradle.process.internal.ExecException: there was a problem starting the process 'command' / home / inheritx / Android_SDK_NEW / android-sdk-linux / build-tools / 19.1.0 / aidl ''

+4
source share
1 answer
  • Go to SDK Manager
  • Click "Run Offline Manager"
  • Make sure that you have already downloaded the built-in Android SDK tools and platform tools in the Tools section (Preview channel) 23 rc1
  • , Android Support Library PlayStore "", Android Studio gradle :

    apply plugin: 'com.android.application'
    

    android {   compileSdkVersion 'android-MNC'   buildToolsVersion "23.0.0 rc1"

    defaultConfig {
        applicationId "org.code2care.myapplication1"
        minSdkVersion 'MNC'
        targetSdkVersion 'MNC'
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    

    }

    {   compile fileTree (dir: 'libs', include: ['*.jar']) }

+1

Source: https://habr.com/ru/post/1614830/


All Articles