Hi guys!
Even reading, and re-reading publishing tutorial i have some troubles to do that job. I'm using VS 2010, im Package my app, the in bin/release appear 2 apks, signed and not-signed. Then i do the manually job like this.
`keytool -genkey -v -keystore but.keystore -alias publico -keyalg RSA -keysize 2048 -validity 10000
cd C:\Program Files\Java\jdk1.7.0_45\bin jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore "C:\Users\BRUNO\but.keystore" "C:\Users\BRUNO\Documents\Visual Studio 2010\Projects\CronometroPeteca\CronometroPeteca\bin\Release\CronometroPeteca.CronometroPeteca.apk" publico
cd C:\Program Files\android\sdk\tools zipalign -f -v 4 "C:\Users\BRUNO\Documents\Visual Studio 2010\Projects\CronometroPeteca\CronometroPeteca\bin\Release\CronometroPeteca.CronometroPeteca.apk" peteca.apk`
My first doubt is: - Which apk should i upload, the new onew recetly created peteca.apk, or the CronometroPeteca.CronometroPeteca.apk?
Even uploading both, google play always return me the following error: "APK package name should be in this format "com.example.myapp". Can contains letters(a-z), numbers and underline(_). Should start with lowercase character."
I tried to put lowercase on my apk, but it doesnt work, can anyone point me to right direction ?