doc.rustdesk.com icon indicating copy to clipboard operation
doc.rustdesk.com copied to clipboard

Sign app apk

Open DarkMitsuhiro opened this issue 3 years ago • 1 comments

I am using flutter to create an apk with my server settings. App is not created because it is not signed. Please tell me how to fix it.

DarkMitsuhiro avatar Jan 27 '23 13:01 DarkMitsuhiro

How did you sign it?

Try to temporally use debug sign:

sed -i "s/signingConfigs.release/signingConfigs.debug/g" ./flutter/android/app/build.gradle

Then use this command to build your apk:

flutter build apk --release --target-platform android-arm64 --split-per-abi

Orholt avatar Mar 01 '23 08:03 Orholt