kellyfj
kellyfj

Reputation: 6933

Do android libraries need to be signed?

Pretty much the title says it all. I know Android Application Packages (APK) can and should be signed, but how about an Android library (AAR) file?

I am building a library for internal use and am storing the AAR/Jar file in an internal Maven repo (however the application will be on the play store)

Upvotes: 0

Views: 471

Answers (1)

Kaediil
Kaediil

Reputation: 5535

Short answer. No. The libraries will be included in each apk and signed by that app's key.

Upvotes: 2

Related Questions