Skip to content

Commit

Permalink
Update 1.4_r1.
Browse files Browse the repository at this point in the history
  • Loading branch information
D4rK7355608 committed Sep 6, 2022
1 parent ce42cd5 commit 96ee285
Show file tree
Hide file tree
Showing 95 changed files with 605 additions and 520 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github: D4rK7355608
patreon: patreon.com/D4rK7355608
custom: ['https://www.paypal.me/d4rkmichaeltutorials']
custom: ['https://www.paypal.me/d4rkmichaeltutorials', 'https://bit.ly/3p8bpjj']
49 changes: 49 additions & 0 deletions .idea/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Version 1.4_r1:
- Added language preferences (Android 13+);
- Fixed Firebase crashes;
- Fixed splash screen;
- Removed language section from settings;
- Removed unused resources;
- New scroll bars;
- Bug fixes;
- Tweaks;
- Under the hood improvements.

# Version 1.3_r1:
- Target SDK now is 26;
- Removed unused resources;
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Bugs can be reported [here](https://github.com/D4rK7355608/com.d4rk.englishwithl
- Create an audio/text/general bug. 🐞

__🖤 English with Lidia Plus is 100% free, open source, ad free, and have a clean design! 🖤__
__🖤 English with Lidia Plus is 100% Free, Open Source and have a clean design! 🖤__

## 🛠️ Features!
- ⭐️ No internet required.
Expand All @@ -41,7 +41,7 @@ __🖤 English with Lidia Plus is 100% free, open source, ad free, and have a cl
- ⭐️ Fast and lightweight.
- ⭐️ Free Open source & secure.

__️Note❗️__ Some features are still in progress or needs more improvements and investigations.
__Note❗__ Some features are still in progress or needs more improvements and investigations.

## Changelog [here](https://raw.githubusercontent.com/D4rK7355608/com.d4rk.englishwithlidia.plus/master/CHANGELOG.md)!

Expand All @@ -58,6 +58,7 @@ If you have any suggested features or improvement, please leave a comment. In ca

Rate us 5 stars ⭐⭐⭐⭐⭐ if you are happy with the app.


## 👨🏻‍💻  More About Me:
<a href="mailto:[email protected]"><img src="https://img.shields.io/badge/[email protected]?style=for-the-badge&logo=gmail&logoColor=white"/></a>
<a href="https://developers.google.com/profile/u/D4rK7355608"><img src="https://img.shields.io/badge/Android%20Developers-white?style=for-the-badge&logo=android"/></a>
Expand All @@ -70,11 +71,9 @@ Rate us 5 stars ⭐⭐⭐⭐⭐ if you are happy with the app.
<a href="https://www.youtube.com/c/D4rK7355608/"><img src="https://img.shields.io/youtube/channel/subscribers/UCLDi-rmSRry0pNL-oVvGJAw?color=darkred&label=D4rK&logo=youtube&logoColor=darkred&style=for-the-badge"/></a>
<a href="https://github.com/D4rK7355608/"><img src="https://img.shields.io/github/followers/D4rK7355608?color=white&logo=GitHub&style=for-the-badge"/></a>

[<img src="https://raw.githubusercontent.com/steverichey/google-play-badge-svg/master/img/en_get.svg"
alt="Get it on Google Play"
height="90">](https://play.google.com/store/apps/details?id=com.d4rk.englishwithlidia.plus)
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png" alt="Get it on Google Play" height="90">](https://play.google.com/store/apps/details?id=com.d4rk.englishwithlidia.plus)

__Privacy Policy__ [here](https://sites.google.com/view/d4rk7355608/more/apps/music-sleep-timer/privacy-policy).
__Terms of Service__ [here](https://sites.google.com/view/d4rk7355608/more/apps/music-sleep-timer/terms-of-service).
__Privacy Policy__ [here](https://sites.google.com/view/englishwithlidia/more/privacy-policy).
__Terms of Service__ [here](https://sites.google.com/view/englishwithlidia/more/terms-of-service).

![license](https://imgur.com/QQlcEVT.png)
40 changes: 17 additions & 23 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,27 @@ plugins {
id 'com.google.firebase.crashlytics'
}
android {
compileSdk 32
def tagName = '1.3_r1'
compileSdk 33
def tagName = '1.4_r1'
defaultConfig {
applicationId "com.d4rk.englishwithlidia.plus"
minSdk 26
targetSdk 32
versionCode 17
targetSdk 33
versionCode 21
versionName tagName
archivesBaseName = "com.d4rk.englishwithlidia.plus-v${tagName}"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "String", "VERSION_NAME", "\"${tagName}\""
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
multiDexEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
resValue "bool", "FIREBASE_CRASH_ENABLED", "true"
resValue "bool", "FIREBASE_ANALYTICS_DEACTIVATED", "false"
}
debug {
minifyEnabled true
shrinkResources true
multiDexEnabled true
debuggable true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
resValue "bool", "FIREBASE_CRASH_ENABLED", "false"
resValue "bool", "FIREBASE_ANALYTICS_DEACTIVATED", "true"
}
}
compileOptions {
Expand All @@ -47,26 +42,25 @@ android {
}
}
dependencies {
implementation platform('com.google.firebase:firebase-bom:30.2.0')
implementation 'com.google.firebase:firebase-crashlytics-ktx:18.2.11'
implementation 'com.google.firebase:firebase-analytics-ktx:21.0.0'
implementation 'com.google.firebase:firebase-perf:20.1.0'
implementation 'com.google.firebase:firebase-crashlytics-ktx:18.2.13'
implementation 'com.google.firebase:firebase-analytics-ktx:21.1.1'
implementation 'com.google.firebase:firebase-perf:20.1.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
implementation 'com.google.android.play:review-ktx:2.0.0'
implementation "androidx.palette:palette-ktx:1.0.0"
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.core:core-splashscreen:1.0.0-rc01'
implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'androidx.core:core-splashscreen:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.1'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'com.github.KieronQuinn:MonetCompat:0.4.1'
implementation 'com.airbnb.android:lottie:5.2.0'
implementation 'me.zhanghai.android.fastscroll:library:1.1.8'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Expand Down
Loading

0 comments on commit 96ee285

Please sign in to comment.