当前位置: 首页 > 知识库问答 >
问题:

Android Studio风味尺寸问题

呼延卓
2023-03-14

这是我的build.gradle文件

apply plugin: 'com.android.application'
android {
    configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
    }
    compileSdkVersion 28
    buildToolsVersion "28.0.3"strong text
    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 28
        manifestPlaceholders = [appPackageName: "${applicationId}"]
        multiDexEnabled true
    }
    dexOptions {
        jumboMode true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
        pixol {
            applicationId "com.dslr.camera.pixol"

            //Package name change it before uploading to store
            resValue "string", "app_name", "Pixol" //app name change it before uploading to store
            resValue "string", "dev_name", "" // Google play developer name
            resValue "string", "facebook_app_id", "" //facebook app id (get it from facebook sdk see the dcumentation)
            //admob
            resValue "string", "main_full", "YOUR_ADMOB_AD_UNIT_HERE"// admob interstitial ad 1
            resValue "string", "result_full", "YOUR_ADMOB_AD_UNIT_HERE" // admob interstitial ad 2
            resValue "string", "main_native", "YOUR_ADMOB_AD_UNIT_HERE" // admob naive large tamplate
            resValue "string", "result_native", "YOUR_ADMOB_AD_UNIT_HERE" // admob naive large tamplate

            //audience network
            resValue "string", "main_full_fb", "YOUR_FACEBOOK_AD_UNIT_HERE"// fb ad interstitial ad 1
            resValue "string", "result_full_fb", "YOUR_FACEBOOK_AD_UNIT_HERE"// fb ad interstitial ad 2


            manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"] // app icon change in mipmap folder
            versionCode 2
            versionName "1"

        }

    }

    /* 3) Exclude duplicate licenses */
    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/DEPENDENCIES'
        pickFirst 'AndroidManifest.xml'
        exclude 'META-INF/rxjava.properties'
    }


}

dependencies {
  /*  compile fileTree(include: ['*.jar'], dir: 'libs')
    *//* 4) Add the CSDK framework dependencies (Make sure these version numbers are correct) *//*
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.mlsdev.rximagepicker:library:2.0.0'
    compile 'com.adobe.creativesdk.foundation:auth:0.9.1251'
    compile 'com.adobe.creativesdk:image:4.8.4'
    compile 'com.localytics.android:library:3.8.0'
    compile 'com.github.medyo:fancybuttons:1.8.3'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    compile 'com.facebook.android:audience-network-sdk:4.+'

    compile 'com.google.android.gms:play-services-ads:10.2.1'
    compile 'com.cocosw:bottomsheet:1.+@aar'*/

}

共有1个答案

谭玄天
2023-03-14

您需要为每个口味提供FlavorDimension

以下是您需要做的更改:

apply plugin: 'com.android.application'
android {
    configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
    }
    compileSdkVersion 28
    buildToolsVersion "28.0.3"strong text
    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 28
        manifestPlaceholders = [appPackageName: "${applicationId}"]
        multiDexEnabled true
    }
    dexOptions {
        jumboMode true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    flavorDimensions "version"

    productFlavors {
        pixol {
            dimension "version"
            applicationId "com.dslr.camera.pixol"

            //Package name change it before uploading to store
            resValue "string", "app_name", "Pixol" //app name change it before uploading to store
            resValue "string", "dev_name", "" // Google play developer name
            resValue "string", "facebook_app_id", "" //facebook app id (get it from facebook sdk see the dcumentation)
            //admob
            resValue "string", "main_full", "YOUR_ADMOB_AD_UNIT_HERE"// admob interstitial ad 1
            resValue "string", "result_full", "YOUR_ADMOB_AD_UNIT_HERE" // admob interstitial ad 2
            resValue "string", "main_native", "YOUR_ADMOB_AD_UNIT_HERE" // admob naive large tamplate
            resValue "string", "result_native", "YOUR_ADMOB_AD_UNIT_HERE" // admob naive large tamplate

            //audience network
            resValue "string", "main_full_fb", "YOUR_FACEBOOK_AD_UNIT_HERE"// fb ad interstitial ad 1
            resValue "string", "result_full_fb", "YOUR_FACEBOOK_AD_UNIT_HERE"// fb ad interstitial ad 2


            manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"] // app icon change in mipmap folder
            versionCode 2
            versionName "1"

        }

    }

    /* 3) Exclude duplicate licenses */
    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/DEPENDENCIES'
        pickFirst 'AndroidManifest.xml'
        exclude 'META-INF/rxjava.properties'
    }


}

dependencies {
  /*  compile fileTree(include: ['*.jar'], dir: 'libs')
    *//* 4) Add the CSDK framework dependencies (Make sure these version numbers are correct) *//*
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.mlsdev.rximagepicker:library:2.0.0'
    compile 'com.adobe.creativesdk.foundation:auth:0.9.1251'
    compile 'com.adobe.creativesdk:image:4.8.4'
    compile 'com.localytics.android:library:3.8.0'
    compile 'com.github.medyo:fancybuttons:1.8.3'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    compile 'com.facebook.android:audience-network-sdk:4.+'

    compile 'com.google.android.gms:play-services-ads:10.2.1'
    compile 'com.cocosw:bottomsheet:1.+@aar'*/

}

在此了解有关维度的更多信息

 类似资料:
  • 升级为金丝雀工作室。我以前的Telegram Messenger项目给出了以下错误。 我该怎么办?我已经看到了链接,但不明白该怎么做。我现在有3个构建变体,发布,调试和自由开放源码。

  • 在我的android项目中实现谷歌广告后,我面临着应用程序大小的大幅增加,对我来说,这是由com.google.android.gms.internal.ads.中的许多类引起的。有什么方法可以用更低的内存来实现广告吗?

  • 主要内容:jQuery 尺寸方法,jQuery 尺寸,jQuery width() 和 height() 方法,实例,jQuery innerWidth() 和 innerHeight() 方法,实例,jQuery outerWidth() 和 outerHeight() 方法,实例通过 jQuery,很容易处理元素和浏览器窗口的尺寸。 jQuery 尺寸方法 jQuery 提供多个处理尺寸的重要方法: width() height() innerWidth() innerHeight() ou

  • 在CSS中,通过 width 和 height 属性来定义一个盒子的宽度和高度,可以用长度值或百分比来设置,不允许负值。使用百分比时,根据父元素的宽度进行计算盒子的宽度,根据父元素的高度进行计算盒子的高度。 如果一个盒子没有显式定义 width 属性,则宽度的计算结果跟定位类型相关:静态定位或相对定位的盒子,其宽度为父元素宽度的100%;绝对定位和浮动的盒子,其宽度根据所包含内容自动扩展,最大宽度

  • CSS 尺寸 (Dimension) 属性允许你控制元素的高度和宽度。同样,它允许你增加行间距。 更多实例 设置元素的高度 这个例子演示了如何设置不同元素的高度。 使用百分比设置图像的高度 这个例子演示了如何使用百分比值设置元素的高度。 使用像素值来设置元素的宽度 本例演示如何使用像素值来设置元素的宽度。 设置元素的最大高度 此示例演示如何设置元素的最大高度。 使用百分比来设置元素的最大宽度 本例

  • 问题内容: 我对(N,)维数组和(N,1)维数组之间的转换有疑问。例如,y是(2,)维。 但是下面将显示y2为(2,1)维。 在不复制的情况下将y2转换回y的最有效方法是什么? 谢谢汤姆 问题答案: 为此工作 还请注意,除非需要复制新形状(在这里不需要这样做),否则它不会复制数据: