I tried to test an app with LG android version 4.4.2, kernel version 3.4.0. My app has following in build.gradle:-
android { compileSdkVersion 18 buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.androidbegin.dialogfragmenttutorial"
minSdkVersion 8
targetSdkVersion 17
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:18.0.0'
}
What is wrong?