-
Notifications
You must be signed in to change notification settings - Fork 948
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #770 from SecUpwN/development
Unchaining WIP-Release v0.1.39.1-alpha
- Loading branch information
Showing
38 changed files
with
792 additions
and
728 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
if (project.hasProperty("aimsicd_key_alias") | ||
&& project.hasProperty("aimsicd_key_password") | ||
&& project.hasProperty("aimsicd_keystore_password") | ||
&& file('../keystore.jks').exists()) { | ||
android { | ||
signingConfigs { | ||
releaseSigningConfig { | ||
keyAlias project.hasProperty("aimsicd_key_alias") ? aimsicd_key_alias : "dummy" | ||
keyPassword ? aimsicd_key_password : "dummy" | ||
storeFile file('../keystore.jks') | ||
storePassword project.hasProperty("aimsicd_keystore_password") ? aimsicd_keystore_password : "dummy" | ||
} | ||
} | ||
buildTypes { | ||
release { | ||
signingConfig signingConfigs.releaseSigningConfig | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.