Reputation: 1137
I have done listed points for fixing the same but no luck:
1. Changed package name
2. Clear cache & checked if there is no previous build installed on device
3. allowBackUp set to false
4. Version upgradation and target SDK changed (In this case app is able to install some devices but some other devices getting the app not installed)
5. Selected both V1 and V2 checkboxes (Signature Version)
Is there any other thing to do apart from above points?
Upvotes: 1
Views: 145
Reputation: 1137
After trying many solutions, I performed following steps which worked for me:
signingConfigs { config { keyAlias ‘testAlias’ keyPassword ‘testPassword’ storeFile file('/Users/raj.sharma/test-project/keystore') storePassword 'testPassword' } }
Upvotes: 1