im trying to build an android application under linux mint ,i have updated android studio to 2.2.3
, but when i run the app a message appears: Waiting for Target Device to Come Online , and then the emulator does not even start.
this my gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "bassem.com.vib"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.squareup.retrofit:retrofit:1.7.1'
compile 'com.wang.avi:library:2.1.3'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
compile 'com.google.code.gson:gson:2.6.1'
compile 'com.squareup.picasso:picasso:2.5.0'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:25.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta5'
compile 'com.github.PhilJay:MPAndroidChart:v2.0.9'
compile 'com.sdsmdg.tastytoast:tastytoast:0.1.1'
compile 'com.itextpdf:itextg:5.5.9'
}