質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Android

Androidは、Google社が開発したスマートフォンやタブレットなど携帯端末向けのプラットフォームです。 カーネル・ミドルウェア・ユーザーインターフェイス・ウェブブラウザ・電話帳などのアプリケーションやソフトウェアをひとつにまとめて構成。 カーネル・ライブラリ・ランタイムはほとんどがC言語/C++、アプリケーションなどはJavaSEのサブセットとAndroid環境で書かれています。

Android Wear

Android Wearとは、Googleが発表した腕時計型ウェアラブルデバイス(スマートウォッチ)向けのプラットフォームです。GoogleのAndroid OSをベースにしており、情報の入手・管理などを行うことができます。

Android Studio

Android Studioは、 Google社によって開発された、 Androidのネイティブアプリケーション開発に特化した統合開発ツールです。

Google

Googleは、アメリカ合衆国に位置する、インターネット関連のサービスや製品を提供している企業です。検索エンジンからアプリケーションの提供まで、多岐にわたるサービスを提供しています。

Q&A

解決済

1回答

2102閲覧

Wearアプリのリジェクトについて

utoka

総合スコア56

Android

Androidは、Google社が開発したスマートフォンやタブレットなど携帯端末向けのプラットフォームです。 カーネル・ミドルウェア・ユーザーインターフェイス・ウェブブラウザ・電話帳などのアプリケーションやソフトウェアをひとつにまとめて構成。 カーネル・ライブラリ・ランタイムはほとんどがC言語/C++、アプリケーションなどはJavaSEのサブセットとAndroid環境で書かれています。

Android Wear

Android Wearとは、Googleが発表した腕時計型ウェアラブルデバイス(スマートウォッチ)向けのプラットフォームです。GoogleのAndroid OSをベースにしており、情報の入手・管理などを行うことができます。

Android Studio

Android Studioは、 Google社によって開発された、 Androidのネイティブアプリケーション開発に特化した統合開発ツールです。

Google

Googleは、アメリカ合衆国に位置する、インターネット関連のサービスや製品を提供している企業です。検索エンジンからアプリケーションの提供まで、多岐にわたるサービスを提供しています。

0グッド

0クリップ

投稿2016/01/06 23:45

表題の件で、審査が通らず困っております。以下の理由で拒絶されていますが、マニフェストに関して、mobile側にwearの使用しているパーミッションを追加したところ、同じ理由で、審査に通りませんでした。

REASON(S) FOR EXCLUSION: -Your app does not have Android Wear functionality that’s visible to the user. If you’re adding wearable features to notifications, make sure that they are triggering when appropriate. If you’re building a wearable app, there may have been issues packaging it. Be sure to: - Include all the permissions declared in the manifest file of the wearable app in the manifest file of the mobile app. For example, if you specify the VIBRATE permission for the wearable app, you must also add that permission to the mobile app. - Ensure that both the wearable and mobile APKs have the same package name and version number. - Sign your app. - Test your app on a variety of different Android Wear devices and configurations.

以下がwearとmobileのマニュフェストの抜粋ですが、おかしなところはございますでしょうか?修正点などがわかればお教えいただければ幸いです。
よろしくお願いいたします。

xml

1<!-- *** Wear *** --> 2<?xml version="1.0" encoding="utf-8"?> 3<manifest 4 xmlns:android="http://schemas.android.com/apk/res/android" 5 package="com.hoge.fuga”> 6 7 <uses-feature android:name="android.hardware.type.watch" /> 8 <uses-permission android:name="android.permission.WAKE_LOCK" /> 9 <uses-permission android:name="android.permission.BODY_SENSORS" /> 10 11 <application 12 android:allowBackup="true" 13 android:icon="@drawable/ic_app_hoge01" 14 android:label="@string/app_name" 15 android:supportsRtl="true" 16 android:theme="@android:style/Theme.DeviceDefault" > 17 <meta-data android:name="com.google.android.gms.version" 18 android:value="@integer/google_play_services_version" /> 19 20 <uses-library 21 android:name="com.google.android.wearable" 22 android:required="false" /> 23 24 <activity 25 android:name=".MainActivity" 26 android:label="@string/app_name" 27 android:theme="@android:style/Theme.DeviceDefault.Light" > 28 <intent-filter> 29 <action android:name="android.intent.action.MAIN" /> 30 31 <category android:name="android.intent.category.LAUNCHER" /> 32 </intent-filter> 33 </activity> 34 </application> 35 36</manifest> 37

xml

1<!-- *** Mobile *** --> 2<?xml version="1.0" encoding="utf-8"?> 3<manifest 4 xmlns:android="http://schemas.android.com/apk/res/android" 5 package="com.hoge.fuga”> 6 7 <uses-permission android:name="android.permission.INTERNET" /> 8 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 9 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 10 <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /> 11 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 12 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 13 <uses-permission android:name="android.permission.CAMERA" /> 14 15 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> 16 <uses-permission android:name="android.permission.GET_ACCOUNTS" /> 17 <uses-permission android:name="android.permission.WAKE_LOCK" /> 18 19 <!-- *** android wear *** --> 20 <uses-permission android:name="android.permission.WAKE_LOCK" /> 21 <uses-permission android:name="android.permission.BODY_SENSORS" /> 22 23 <permission 24 android:name="com.lucky_ponies.hoge.permission.C2D_MESSAGE" 25 android:protectionLevel="signature" /> 26 <permission 27 android:name="com.lucky_ponies.hoge.permission.MAPS_RECEIVE" 28 android:protectionLevel="signature" /> 29 <uses-feature 30 android:glEsVersion="0x00020000" 31 android:required="true" /> 32 <uses-permission android:name="com.lucky_ponies.hoge.permission.C2D_MESSAGE" /> 33 34 35 <application 36 android:name=".Activity.VolleyApplication" 37 android:allowBackup="true" 38 android:icon="@drawable/ic_app_hoge01" 39 android:label="@string/app_name" 40 android:theme="@style/MyMaterialTheme"> 41 <activity 42 android:name="com.hoge” 43 android:label="@string/app_name" 44 android:screenOrientation="portrait"/> 45 <activity 46 android:name=".Activity.MainActivity" 47 android:label="@string/app_name" 48 android:screenOrientation="portrait"> 49 <intent-filter> 50 <action android:name="android.intent.action.MAIN" /> 51 52 <category android:name="android.intent.category.LAUNCHER" /> 53 </intent-filter> 54 </activity> 55 <activity 56 android:name=".Activity.TakePictActivity" 57 android:label="@string/title_activity_take_pict" 58 android:screenOrientation="portrait"> 59 </activity> 60 </application> 61 62</manifest> 63

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

自己解決

google play担当者にメールして何が理由か聞いてみました。
mobile側に以下の権限がないと返信が来ました。
これらはwearに使っていなかったので、腑に落ちなかったのですが、付け加えて再申請したところ、無事に通りました。なにか参考になればと記載させていただきました。

uses-permission: name='android.permission.READ_EXTERNAL_STORAGE'
uses-permission: name='android.permission.USE_CREDENTIALS'

投稿2016/01/08 02:55

編集2016/01/08 02:56
utoka

総合スコア56

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問