Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android differences between signed and unsigned .apk files?

Tags:

android

How many difference between signed and unsigned .apk files in android?

I know only one when i integrate in-app purchase i have unsigned .apk its gives me error Item version is not same as...

and also we cant install unsigned .apk file in android device...

is there any other Diffrences ?

like image 601
Samir Mangroliya Avatar asked Apr 23 '12 12:04

Samir Mangroliya


2 Answers

the signed apk will contain an extra folder "META-INF", which contains three files:

  1. MANIFEST.MF
  2. CERT.SF
  3. CERT.RSA
like image 188
5hssba Avatar answered Nov 09 '22 17:11

5hssba


If you send unsigned apk to customer, they have to enable Unknown sources to be able to install the app. Also Google Play Console doesn't accept unsigned one.

enter image description here

like image 36
thanhbinh84 Avatar answered Nov 09 '22 17:11

thanhbinh84