打包android wear 应用程序 Package with Android Studio

本文指导您如何在Android Studio中正确打包可穿戴应用。包括确保应用模块间权限同步、设置Gradle依赖、生成签名APK等步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Package with Android Studio


To properly package a wearable app in Android Studio:

  1. Include all the permissions declared in the manifest file of the wearable app module in the manifest file of the handheld app module. For example, if you specify the VIBRATE permission for the wearable app, you must also add that permission to the handheld app.
  2. Ensure that both the wearable and handheld app modules have the same package name and version number.
  3. Declare a Gradle dependency in the handheld app's build.gradle file that points to the wearable app module:
    dependencies {
       compile 'com.google.android.gms:play-services:5.0.+@aar'
       compile 'com.android.support:support-v4:20.0.+''
       wearApp project(':wearable')
    }
  4. Click Build > Generate Signed APK... and follow the on-screen instructions to specify your release keystore and sign your app. Android Studio exports the signed handheld app with the wearable app embedded in it automatically into your project's root folder.
上面是官方的guide,
如果仅仅是做一个测试,android studio 已经为我们做了东西。
我们要做的仅仅是
1:在创建工程的时候勾选上wear,
2:删除掉gradle 里面和google play service 相关的东西,
3:然后执行上面第四步就可以了。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值