当前位置:   article > 正文

Flutter打包APK注意事项_编译apk,debug版本中不包含"libflutter.so",release版本中包含

编译apk,debug版本中不包含"libflutter.so",release版本中包含

打包步骤:

  • 生成jks签名文件:
    我们可以用AS打开android项目,并创建jks:
    在这里插入图片描述
    创建成功后,将jks文件放进app下的keystore目录(当然jks文件放入位置是自定义的):
    在这里插入图片描述
  • 在android根目录下创建key.properties:
storePassword=123456
keyPassword=123456
keyAlias=wanwan
storeFile=keystore/key.jks
  • 1
  • 2
  • 3
  • 4
  • 打开app的build.gradle,添加代码:
	def keystorePropertiesFile = rootProject.file("key.properties")
	def keystoreProperties = new Properties()
	keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

	signingConfigs {
	   release {
	       keyAlias keystoreProperties['keyAlias']
	       keyPassword keystoreProperties['keyPassword']
	       storeFile file(keystoreProperties['storeFile'])
	       storePassword keystoreProperties['storePassword']
	   }
	}
	
	buildTypes {
	   release {
	       signingConfig signingConfigs.release
	       minifyEnabled false
	       shrinkResources false
	   }
	   debug {
	       signingConfig signingConfigs.release
	       minifyEnabled false
	       shrinkResources false
	   }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

注意点:minifyEnabled 混淆和shrinkResources移除无用资源需同时为true或false,否则可能导致编译失败!

同时我们可以在defaultConfig中开启multiDex,以及自定义支持的cpu架构:

    defaultConfig {
        applicationId "com.byl.wanwan"
        minSdkVersion 21
        targetSdkVersion 27
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        flavorDimensions "22"
        multiDexEnabled true
        ndk {
            abiFilters "armeabi", "armeabi-v7a"
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

**注意点:**此时若直接运行,会报错,找不到libflutter.so!这是因为在编译debug时,flutter默认会把所支持的cpu架构全部编译,而我们只定义了arm,所以在某些设备上就会运行失败!我们可以在build.gradle中可以看到有一句代码:

apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
  • 1

这个就是flutter在编译apk时的配置信息 :

    // The platforms that can be passed to the `--Ptarget-platform` flag.
    private static final String PLATFORM_ARM32  = "android-arm";
    private static final String PLATFORM_ARM64  = "android-arm64";
    private static final String PLATFORM_X86    = "android-x86";
    private static final String PLATFORM_X86_64 = "android-x64";

    // The ABI architectures.
    private static final String ARCH_ARM32      = "armeabi-v7a";
    private static final String ARCH_ARM64      = "arm64-v8a";
    private static final String ARCH_X86        = "x86";
    private static final String ARCH_X86_64     = "x86_64";
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

要解决这个问题,我们可以指定target-platform,在build.gradle中,apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"前,加上:

project.setProperty('target-platform', 'android-arm')
  • 1

此时就可以运行成功了!

然后我们可以测试,用flutter build apk,生成的release包会发现比之前的debug小了很多!

将release包安装后 ,会发现运行速度比debug包快了几倍,然额,出现了点小问题,首页列表数据没有展示,这是什么鬼?debug是没有问题的,为什么release出了问题?

仔细查找log,发现了一处错误提示:

Instance of 'DiagnosticsProperty<void>'
  • 1

在查询了该错误的原因后,大概是因为Expanded组件的错误使用导致,Expanded一般只在Colunm和Row以及Flex下使用,在其它组件下在打包时就可能出现问题,修改后,再次打包,显示正常!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/820157
推荐阅读
相关标签
  

闽ICP备14008679号