Cool. Building for Android is a black art, that you're now versed into! As for signing, given that you don't have the project's secret key, you won't be able to sign your apk is if we were doing it. So your android will always see anything you sign as a mismatch with the official app already installed. So unless you wanna run with your own fork of the project, there's not much point for you to sign the apk imho.
That said, if you want to try signing on your own, you need to generate a keystore (there's docs for it I'm sure), and you need to have a clients/android/keystore.properties file, with fields like that in it: storeFile=perkeep-android.keystore storePassword=yourPassword keyAlias=camKey On Tue, 23 Oct 2018 at 11:43, clive.boulton <[email protected]> wrote: > > Thank you. With your direction I built debug and release using the docker > build. I now need to figure out how to sign the apk. > app-release-unsigned.apk > > On Saturday, October 20, 2018 at 5:56:24 AM UTC-7, simon.bohlin wrote: >> >> why so old gradle? >> >> gradle can be used via gradlew - a wrapper script. That's reliable when >> automating, and builds quickly, bypassing docker. >> >> For how to integrate gradlew in a build script, see most any sample app >> gitrepo, like the repo of react-native-firebase sample. >> >> Check you have ANDROID_SDK defined. >> >> You'll probably need to have build keys in a file, say MY_KEYS.keystore and >> reference that file in root folder .properties and then typically I'd have >> to android app's build . properties in a folder right below the root. >> Building android apps is a science >> >> >> Android play store demands API target 28.1, minSDK 23 or so. I'd use gradle >> 4.6+ if compatible => if go can work with this newer gradle. > > -- > You received this message because you are subscribed to the Google Groups > "Perkeep" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Perkeep" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
