gpt4 book ai didi

android - 为什么 Android Studio 创建的 APK 比 Eclipse 创建的 APK 大?

转载 作者:行者123 更新时间:2023-11-29 01:27:19 26 4
gpt4 key购买 nike

我用 Eclipse 创建的 APK 是 900K,但是用 Android Studio 创建的是 1.62MB。代码是一样的。为什么?在 Eclipse 中,我将 facebook-sdk.jar、google-analytics.jar 和其他 jar 添加到我的库中。在Android Studio中,两个build.gradle如下:

  1. 项目中的build.gradle

    buildscript {
    repositories {
    jcenter()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:1.3.0'
    classpath 'com.google.gms:google-services:1.3.0-beta1'
    }
    }

    allprojects {
    repositories {
    jcenter()
    }
    }
  2. 模块中的build.gradle

    apply plugin: 'com.android.application'
    apply plugin: 'com.google.gms.google-services'

    android {
    compileSdkVersion 21
    buildToolsVersion "22.0.1"

    defaultConfig {
    applicationId "com.xxx.xxx"
    minSdkVersion 15
    targetSdkVersion 21
    }

    buildTypes {
    release {
    shrinkResources true
    minifyEnabled true
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
    }
    }
    }

    repositories {
    mavenCentral()
    }

    dependencies {
    compile 'com.facebook.android:facebook-android-sdk:4.6.0'
    compile 'com.android.support:support-v4:21.0.3'
    // compile 'com.google.android.gms:play-services:7.5.+'
    compile 'com.google.android.gms:play-services-analytics:7.5.0'
    compile files('libs/stickylistheaders_lib.jar')
    }

最佳答案

build.gradle 中使用这个问题是在 gradle build 中

 buildTypes {

debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'

}

}

关于android - 为什么 Android Studio 创建的 APK 比 Eclipse 创建的 APK 大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33257449/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com