Skip to content

Commit

Permalink
Move package declaration from manifest to gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
cyb3rko committed Oct 22, 2022
1 parent d135227 commit da23b18
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
48 changes: 24 additions & 24 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,9 @@ plugins {
}

android {
// signingConfigs {
// Properties properties = new Properties()
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
//
// signingConf1 {
// storeFile file(properties.getProperty("signing.file"))
// storePassword properties.getProperty("signing.password")
// keyAlias properties.getProperty("signing.key1.alias")
// keyPassword properties.getProperty("signing.key1.password")
// }
// signingConf2 {
// storeFile file(properties.getProperty("signing.file"))
// storePassword properties.getProperty("signing.password")
// keyAlias properties.getProperty("signing.key2.alias")
// keyPassword properties.getProperty("signing.key2.password")
// }
// signingConf3 {
// storeFile file(properties.getProperty("signing.file"))
// storePassword properties.getProperty("signing.password")
// keyAlias properties.getProperty("signing.key3.alias")
// keyPassword properties.getProperty("signing.key3.password")
// }
// }
namespace 'com.cyb3rko.flashdim'

compileSdk 33

defaultConfig {
applicationId "com.cyb3rko.flashdim"
minSdk 33
Expand Down Expand Up @@ -73,6 +50,29 @@ android {
enable = false
}
}
// signingConfigs {
// Properties properties = new Properties()
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
//
// signingConf1 {
// storeFile file(properties.getProperty("signing.file"))
// storePassword properties.getProperty("signing.password")
// keyAlias properties.getProperty("signing.key1.alias")
// keyPassword properties.getProperty("signing.key1.password")
// }
// signingConf2 {
// storeFile file(properties.getProperty("signing.file"))
// storePassword properties.getProperty("signing.password")
// keyAlias properties.getProperty("signing.key2.alias")
// keyPassword properties.getProperty("signing.key2.password")
// }
// signingConf3 {
// storeFile file(properties.getProperty("signing.file"))
// storePassword properties.getProperty("signing.password")
// keyAlias properties.getProperty("signing.key3.alias")
// keyPassword properties.getProperty("signing.key3.password")
// }
// }
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.cyb3rko.flashdim">
xmlns:tools="http://schemas.android.com/tools">

<application
android:name=".App"
Expand Down

0 comments on commit da23b18

Please sign in to comment.