Страницы

Поиск по вопросам

четверг, 11 апреля 2019 г.

Как сохранить app в arr архив?

Почему для модуля можно создвть arr a для app только apk? В чем вообще отличие app от модуля я не вижу в gradle разницы. Но Android Studio как-то их отличает...

apply plugin: 'com.android.application'
android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "com.android.myapplication" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } productFlavors { } }
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' }

apply plugin: 'com.android.library'
android { compileSdkVersion 23 buildToolsVersion "23.0.2"
defaultConfig { minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } }
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' }


Ответ

Формат aar - это формат упаковки android-библиотеки (Android Library Format)/ Естественно, что сохранить в этот формат можно библиотеку, а не приложение.
О типе получаемого на выходе файла говорит строка apply plugin, где соответственно указывается библиотека это (library) или приложение (application)
Вы можете сделать из своего приложения библиотеку (заменить apply plugin: 'com.android.application' на apply plugin: 'com.android.library') и собрать ее в aar-формат

Комментариев нет:

Отправить комментарий