我正在学习谷歌最近推出的材料设计。我正在使用 Android Studio 编写我的应用程序代码。
当我构建项目时,它不会在我的代码中显示任何错误,但最后我每次都会收到相同的错误消息。
失败 [INSTALL_FAILED_OLDER_SDK]
我在 stackoverflow Failure [INSTALL_FAILED_OLDER_SDK] Android-L上看到了很多线程,但这并没有回答我的问题。
我正在 Android 4.4.4 上测试一个应用程序。我不想针对 API 19 编译项目。我也想拥有我的应用程序的材料主题,我想使用 Android L 中添加的新 api。
这怎么可能针对较低的 android 版本针对 Android L 编译项目?
构建.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-L'
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "multipanelayout.example.com.multipanelayoutdemo"
minSdkVersion 15
targetSdkVersion 'L'
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
值-styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
值 21 -styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="android:Theme.Material.Light">
</style>
</resources>
提前致谢。