Android Studio 3.5 - Установка приложения Wear на телефон - PullRequest
0 голосов
/ 19 сентября 2019

Смартфон: Galaxy S5 (Android 6.0.1 - без рута) Часы: Moto 360 1st gen (Android 6.0.1)

Подписанное приложение (apk) не может быть установлено на Galaxy S5, поэтому его нельзяиспользуется на часах либо.Он просто говорит: «Приложение X не установлено» (через 3 секунды «Установка ...)

В эмуляторе износа приложение работает безупречно. Структура слева: app - manifest - java - java (генерируется) - res - res (генерируется) Сценарии Gradle - build.gradle (проект) - build.gradle (модуль: приложение) - gradle-wrapper.properties - proguard-rules.pro - gradle.properties - settings.gradle - local.свойства

AndroidManifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.username.appname">

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

    <uses-feature android:name="android.hardware.type.watch" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@android:style/Theme.DeviceDefault">
        <uses-library
            android:name="com.google.android.wearable"
            android:required="true" />
        <!--
               Set to true if your app is Standalone, that is, it does not require the handheld
               app to run.
        -->
        <meta-data
            android:name="com.google.android.wearable.standalone"
            android:value="true" />

        <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".Colors" />
        <activity android:name=".ConfirmAction" />
        <activity android:name=".TriggerOnResume" />
    </application>

</manifest>

build.gradle (приложение):

apply plugin: 'com.android.application'

android
        {
            compileSdkVersion 27
            defaultConfig
                    {
                        applicationId "com.example.username.appname"
                        minSdkVersion 23
                        targetSdkVersion 27
                        versionCode 1
                        versionName "1.0"
                    }
            buildTypes
                    {
                        release
                                {
                                    minifyEnabled false
                                    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                                }
                    }
            buildToolsVersion '27.0.3'
        }
dependencies
        {
            implementation fileTree(dir: 'libs', include: ['*.jar'])
            implementation 'com.google.android.support:wearable:2.3.0'
            implementation 'com.google.android.gms:play-services-wearable:15.0.1'
            implementation 'com.android.support:percent:27.1.1'
            implementation 'com.android.support:support-v13:27.1.1'
            implementation 'com.android.support:recyclerview-v7:27.1.1'
            implementation 'com.android.support:wear:27.1.1'
            compileOnly 'com.google.android.wearable:wearable:2.3.0'
            implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        }

Поскольку оба устройства (смартфон и часы) имеют одинаковую версию для Android, я ожидаючто apk будет установлен на смартфон, а после этого автоматически на часы.

Любая помощь будет оценена!

...