リーンバック ライブラリー リーンバック バージョン 17:23.1.1 を使用してアプリを作成しました。
これまでの話は次のとおりです。
1) アプリは、5.0 以降のすべての Android デバイスで実行されます。2) アプリは Android 5.0 以降および OS として Android 4.4 を搭載したエミュレーターで実行されます。
問題は、kitkat (Android 4.4.2) を搭載した Android TV ボックスである 2 つのデバイスで開いて実行できないことです。アプリをインストールして、インストール済みアプリのリストに表示できます。しかし、アプリを開くことも、デバイス上で実行することもできません
アプリの作成には android studio を使用しました。アプリの gradle.build ファイルは次のとおりです。
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:23'
buildToolsVersion "23.0.2"
defaultConfig {
applicationId 'xxxx.xxxxxx.xxxxx'
minSdkVersion 18
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:leanback-v17:23.1.1'
compile 'com.squareup.picasso:picasso:2.3.2'
}
Android 4.4 デバイスでアプリを実行するにはどうすればよいですか??