2016-05-01 4 views

答えて

0

ProGuardを使用したり、デバッグ情報を削除しようとしましたか?

+0

私がしようとしましたが、残念ながらProGuardのは、ドライバファイルを最適化していません – Ranjan

0

android gradle pluginの新機能 - APK分割: http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splitsを使用できます。これは、Android Gradleプラグインに追加された比較的新しい機能で、CPUあたり1つのAPKを配信することを約束しています。
あなたはこのようなbuild.gradleファイルにABI分割を有効にすることができます。

android { 
    // Some other configuration here... 
    splits { 
     abi { 
      enable true 
      reset() 
      include 'x86', 'armeabi', 'armeabi-v7a', 'mips' 
      universalApk false 
     } 
    } 
} 
関連する問題