android - 如何为 Google Play 发布打包 WatchFace only App

标签 android android-studio google-play android-gradle-plugin wear-os

到目前为止

我正在开发一款适用于 Android Wear 的表盘应用。

我创建了 2 个模块:

  1. Wear - 在开发过程中运行良好的表盘
  2. Mobile - 评论建议的没有 Activity 的空模块

我已按照 packaging wear apps for the playstore 中的说明将 wear 模块作为依赖项添加到移动设备中

该应用在 Play 商店中处于 alpha 阶段。我已经上传了 mobile-release.apk。

该应用程序在我的手机上安装正常,但 Wear 模块,WatchFace 无法安装在我的穿戴设备上。这是我的问题。

我做错了什么?

这是我的 list 和 Gradle 配置

移动 list

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dimitrioskanellopoulos.athletica">

<uses-permission android:name="android.permission.BODY_SENSORS"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

<application android:allowBackup="true" android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name" android:supportsRtl="true"
    android:theme="@style/AppTheme">

</application>


佩戴 list

<service
  android:name="com.dimitrioskanellopoulos.athletica.WatchFaceService"
  android:label="@string/app_name"
  android:permission="android.permission.BIND_WALLPAPER">

  <meta-data
    android:name="android.service.wallpaper"
    android:resource="@xml/watch_face" />

  <meta-data
      android:name="com.google.android.wearable.watchface.preview"
      android:resource="@drawable/preview_rectangular" />

  <meta-data
      android:name="com.google.android.wearable.watchface.preview_circular"
      android:resource="@drawable/preview_circular" />

  <intent-filter>
    <action android:name="android.service.wallpaper.WallpaperService" />
    <category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
  </intent-filter>
</service>


项目的Build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

移动模块的Build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.dimitrioskanellopoulos.athletica"
        minSdkVersion 22
        targetSdkVersion 23
        versionCode 4
        versionName "1.0.2"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            zipAlignEnabled true
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.3.0'
    wearApp project(':wear')
}

穿戴模块的Build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.dimitrioskanellopoulos.athletica"
        minSdkVersion 22
        targetSdkVersion 23
        versionCode 4
        versionName "1.0.2"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            zipAlignEnabled true
        }
    }
    productFlavors {
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-annotations:23.3.0'
    compile 'com.google.android.support:wearable:1.4.0'
    compile 'com.android.support:support-v4:23.3.0'
    compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.google.android.gms:play-services-location:8.4.0'
    compile 'com.google.android.gms:play-services-wearable:8.4.0'
    compile 'com.luckycatlabs:SunriseSunsetCalculator:1.2'
    compile 'org.apache.commons:commons-lang3:3.4'
}

如有任何帮助,我们将不胜感激!

最佳答案

好吧,过了一段时间它就安装好了。进行了几次卸载/安装。

更新后的 list 是评论的结果,对此表示感谢。

关于android - 如何为 Google Play 发布打包 WatchFace only App,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36693617/

相关文章:

java - 即使在新生成的 Activity 中,按钮也不起作用

android - 我的 Android 应用程序的包名/域名重要吗?

android - 提交 android 应用程序到 play store 以供批准,但尚未公开

java - 在 Java 静态类上找不到方法

android - 代码中解析 "?android:attr/selectableItemBackground"的值

android - 订阅确认时 Amazon SNS SDK 参数无效异常

java - 如何在 Java 中使用 WebResourceRequest 获取 WebView 的 Url?

Android Studio Gradle 构建风格

android - “market://details?id =”表示找不到商品

android - Crashlytics 安卓 NDK : missing all symbols in crash reports