Skip to content

Commit

Permalink
Updated README.md and added a signing config.
Browse files Browse the repository at this point in the history
  • Loading branch information
103sbavert committed Dec 12, 2020
1 parent abaf0e7 commit 76ff296
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md 100644 → 100755
Expand Up @@ -5,6 +5,9 @@

A simple free and open-source dictionary app that uses the API created by [Meet Developer](https://github.com/meetDeveloper) which you can check out [here](https://github.com/meetDeveloper/googleDictionaryAPI). This dictionary app uses that API to show definitions for the words entered by the user. It supports multiple languages and best of all it has dark mode.

## Download
Currently the app is only available on Github releases due to some compilcated personal reasons. You can [download the app from Github releases here.](https://github.com/sbeve72/JADA/releases)

## Multi Language support

This dictionary supports multiple language as the API I am using does too. The languages supported are the following
Expand Down
21 changes: 21 additions & 0 deletions app/build.gradle 100644 → 100755
@@ -1,3 +1,5 @@
import groovy.json.JsonSlurper

plugins {
id 'com.android.application'
id 'kotlin-android'
Expand All @@ -6,6 +8,23 @@ plugins {
}

android {

ext {
json = new JsonSlurper().parseText(new File("/home/sbeve72/keystore/keystore_password.json").text)
keystore_path = json[0].keystore_path
keystore_password = json[0].keystore_password
key_alias = json[0].keys[0].key_alias
key_password = json[0].keys[0].key_password
}

signingConfigs {
release {
storeFile file(keystore_path)
storePassword keystore_password
keyAlias key_alias
keyPassword key_password
}
}
compileSdkVersion 30
buildToolsVersion "30.0.2"

Expand All @@ -20,6 +39,8 @@ android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.release
}
}
compileOptions {
Expand Down

0 comments on commit 76ff296

Please sign in to comment.