Android项目打包aar(kts)

目录

[app build.gradle.kts](#app build.gradle.kts)

AndroidManifests

按步骤生成

生成结果

双击查看内容


app build.gradle.kts
Kotlin 复制代码
plugins {
    id("com.android.application")
    id("org.jetbrains.kotlin.android")
    id("kotlin-parcelize")
    id("kotlin-kapt")
}

改为

Kotlin 复制代码
plugins {
    id("com.android.library")
    id("org.jetbrains.kotlin.android")
    id("kotlin-parcelize")
    id("kotlin-kapt")
}
Kotlin 复制代码
defaultConfig {
        applicationId = "com.xxx"
        minSdk = 24
        targetSdk = 33
        versionCode = 1
        versionName = "1.0"

        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
    }

改为

Kotlin 复制代码
defaultConfig {
        minSdk = 24
        targetSdk = 33

        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
    }
AndroidManifests

去掉application里的内容

去掉启动项

Kotlin 复制代码
<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
按步骤生成
生成结果
双击查看内容
相关推荐
YaBingSec1 天前
玄机靶场-2024ccb初赛sc05 WP
android·运维·网络·笔记·安全·ssh
常利兵1 天前
解锁Android嵌入式照片选择器,让你的App体验丝滑起飞
android
峥嵘life1 天前
Android 切换用户后无法获取 MAC 地址分析解决
android·python·macos
JJay.1 天前
Android BLE 为什么连上了却收不到数据
android
歪楼小能手1 天前
Android16在开机向导最后添加一个声明界面
android·java·平板
夏沫琅琊1 天前
Android联系人导入导出
android·kotlin
zh_xuan1 天前
把Android Library 上传到github并在工程中引用该远程仓库
android·github·远程仓库
诸神黄昏EX1 天前
Android Google MADA
android
盖丽男1 天前
使用 GitHub Actions 自动打包 Android APK
android·github
小林望北1 天前
Kotlin 协程:StateFlow 与 SharedFlow 深度解析
android·开发语言·kotlin