Reputation: 25
There is an application that downloads the code from the assets folder (secure). I would like to know how Google Play Market will react to the application with the packed code in the assets folder? Or advise how and where to extract the code, which can later be run, and not violate the policies of Google Play?
Upvotes: 1
Views: 734
Reputation: 4286
Developer Program Policies state that applications must not download unrestricted executable code from any source other than Google Play and introduce security vulnerabilities.
Hence packing your .dex files inside published APK (e.g. in assets) and extracting them into the application's private directory should be permitted.
Upvotes: 1