Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
dzakdzaks committed Feb 26, 2023
1 parent 2fa11fb commit a1d3121
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 136 deletions.
112 changes: 0 additions & 112 deletions .github/workflows/android_build.yml

This file was deleted.

24 changes: 0 additions & 24 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ plugins {
id 'kotlin-kapt'
}

def properties = loadLocalProperties()

android {
namespace 'com.dzakdzaks.nikparserapp'
compileSdk 33
Expand All @@ -24,23 +22,11 @@ android {
multiDexEnabled true
}

// signingConfigs {
// release {
// if(!properties.getProperty("KEYSTORE_FILE", "").empty){
// storeFile file(properties.getProperty("KEYSTORE_FILE", ""))
// }
// storePassword properties.getProperty("SIGNING_KEY_PASSWORD", "")
// keyAlias properties.getProperty("SIGNING_KEY_ALIAS", "")
// keyPassword properties.getProperty("KEYSTORE_PASSWORD", "")
// }
// }

buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
// signingConfig signingConfigs.release
}
}
compileOptions {
Expand All @@ -63,16 +49,6 @@ android {
}
}

private def loadLocalProperties() {
Properties properties = new Properties()
def localPropertiesFile = project.rootProject.file('local.properties')
if(!localPropertiesFile.exists()){
localPropertiesFile.createNewFile()
}
properties.load(localPropertiesFile.newDataInputStream())
return properties
}


dependencies {

Expand Down

0 comments on commit a1d3121

Please sign in to comment.