捆绑Android Wear1应用程序与android gradle插件3.0.1的问题

问题描述 投票:2回答:1

自从使用最新的android gradle插件3.0.1后,我无法将Wear1签名的APK导入我签名的移动apk文件的res / raw文件夹中

我必须使用最新的gradle来获取某些依赖项的google repo。

我检查了穿着apk,并用我的生产签名签名。

我知道未来的首选方法是拆分,我可以成功地做到这一点,但谷歌公认的安装Wear 1应用程序的延迟问题使得它目前没有吸引力。

以下是我的gradle文件。

项目build.config

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

移动build.config

apply plugin: 'com.android.application'
apply from: rootProject.file('shared-config/android-signing.gradle')


android {
    compileSdkVersion 27
    buildToolsVersion '27.0.2'

    defaultConfig {
        applicationId "com.me.myapp"
        minSdkVersion 18
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }

        release {
            signingConfig signingConfigs.release
        }
    }

    flavorDimensions "environment"

    productFlavors {

        development {
            dimension "environment"
        }

        production {
            dimension "environment"
        }
    }
}

configurations {
    developmentReleaseWearApp
    productionReleaseWearApp
}

dependencies {
    implementation 'com.google.android.gms:play-services-wearable:11.8.0'
    implementation 'com.android.support:support-compat:27.1.0'
    implementation 'com.android.support:percent:27.1.0'

    implementation 'com.android.support.constraint:constraint-layout:1.0.2'

    developmentReleaseWearApp project(path: ':wear', configuration: 'wear1Release')
    productionReleaseWearApp project(path: ':wear', configuration: 'wear1Release')

    implementation 'com.android.support:support-annotations:27.1.0'
    implementation 'com.android.support:appcompat-v7:27.1.0'
    implementation 'com.android.support:recyclerview-v7:27.1.0'
    implementation 'com.android.support:preference-v14:27.1.0'
    implementation 'com.android.support:design:27.1.0'
    implementation 'com.android.support:support-v13:27.1.0'
    provided 'com.google.android.wearable:wearable:2.2.0'
    implementation 'com.google.android.support:wearable:2.2.0'
}

穿build.config

apply plugin: 'com.android.application'
apply from: rootProject.file('shared-config/android-signing.gradle')

android {
    compileSdkVersion 27
    buildToolsVersion '27.0.2'

    publishNonDefault true

    defaultConfig {
        applicationId "com.me.myapp"
        minSdkVersion 23
        targetSdkVersion 27
        versionCode 2
        versionName "1.0"
    }
    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }

        release {
            signingConfig signingConfigs.release
        }
    }

    flavorDimensions "wearVersion"

    productFlavors {
        wear1 {
            dimension "wearVersion"
            // Use the defaultConfig value
        }
        wear2 {
            dimension "wearVersion"
            minSdkVersion 24
        }
    }

    configurations {
        wear1Release
        wear2Release
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "com.google.android.gms:play-services-wearable:11.8.0"
    implementation "com.android.support:support-compat:27.1.0"
    implementation "com.android.support:support-annotations:27.1.0"
    implementation "com.android.support:appcompat-v7:27.1.0"
    implementation "com.android.support:recyclerview-v7:27.1.0"
    implementation "com.android.support:percent:27.1.0"
    implementation "com.android.support:support-v4:27.1.0"
    implementation "com.android.support:wear:27.1.0"
    implementation "com.google.android.support:wearable:2.2.0"
    implementation "com.android.support.constraint:constraint-layout:1.1.0-beta5"
    provided 'com.google.android.wearable:wearable:2.2.0'

}

settings.gradle

include ':mobile'
include ':wear'

grad了-wrapper.properties

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
gradle wear-os
1个回答
1
投票

本周我遇到了同样的问题。今天我终于设法使用3.0.1 gradle将磨损应用程序正确嵌入到移动应用APK中。我在我的wear app build.gradle中添加了一个productFlavor,以匹配我为其生成构建的移动应用程序的productFlavor。试图在移动应用程序的build.gradle依赖项列表中指定一个不同名称的wear app配置似乎对我来说是个问题。

我建议尝试将开发和生产风格添加到您的Wear app build.gradle中:

development {
                dimension "wearVersion"
                // Use the defaultConfig value
            }

production {
                dimension "wearVersion"
                // Use the defaultConfig value
            }

然后将您的移动应用程序build.gradle依赖项更改为:

wearApp project(path: ':wear')

生成构建时,默认情况下它应该将productFlavor与productFlavor匹配,这对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.