-
ionic build --release android
vai gerar um apk na pastaDoProjeto/platforms/android/build/output/android-unsigned.apk. Renomeie o arquivo paranomeDoApk-unsigned.apk
-
Na pasta do java/jde-AlgumaVersao/bin:
keytool -genkey -v -keystore nomeDaChave.keystore -alias aliasQueVcEscolhe -keyalg RSA -keysize 2048 -validity 1000
-
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore nomeDaChave.keystore nomeDoApk-unsigned.apk aliasQueVcEscolheu
-
na pasta do android-adt/sdk/build-tools/algumaVersao:
zipalign -v 4 nomeDoApk-unsigned.apk nomeQueVcQuerDarParaOApk.apk
-
Prontinho. Preencha tudo e tire os prints para o Google Play Developer Console, envie o Apk. `
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Verify captcha | |
$post_data = http_build_query( | |
array( | |
'secret' => CAPTCHA_SECRET, | |
'response' => $_POST['g-recaptcha-response'], | |
'remoteip' => $_SERVER['REMOTE_ADDR'] | |
) | |
); | |
$opts = array('http' => |