Skip to content

Commit 1c2c2b9

Browse files
authored
Merge pull request #2 from CodeDead/feature/upgrades
feat: refactoring, gradle upgrade, dependency upgrades, translation c…
2 parents 8a14dad + bb5b3f6 commit 1c2c2b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+717
-334
lines changed

.idea/assetWizardSettings.xml

Lines changed: 309 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/migrations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 22 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ DeadPix for Android!
44
This app can be used to locate and fix dead or stuck pixels on your screen. No advertisements, no tracking code, no special permissions required!
55

66
# Requirements
7-
* Android 4.4+
7+
* Android 28+
88
* Android Studio
99

10-
# About
11-
This library is maintained by CodeDead. You can find more about us using the following links:
12-
* [Website](https://codedead.com)
13-
* [Twitter](https://twitter.com/C0DEDEAD)
14-
* [Facebook](https://facebook.com/deadlinecodedead)
15-
* [Reddit](https://reddit.com/r/CodeDead/)
16-
1710
## Translations
1811
- Portuguese (Brazil) - [SnwMds](https://github.com/SnwMds)
1912

20-
Copyright © 2019 CodeDead
13+
## About
14+
15+
This library is maintained by CodeDead. You can find more about us using the following links:
16+
* [Website](https://codedead.com/)
17+
* [Twitter](https://twitter.com/C0DEDEAD/)
18+
* [Facebook](https://facebook.com/deadlinecodedead/)
19+
20+
Copyright © 2023 CodeDead

app/build.gradle

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
5-
buildToolsVersion '28.0.3'
4+
namespace "com.codedead.deadpix"
5+
compileSdk 34
66
defaultConfig {
77
applicationId "com.codedead.deadpix"
8-
minSdkVersion 19
9-
targetSdkVersion 28
10-
versionCode 9
11-
versionName '1.9.3'
12-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
8+
minSdk 28
9+
targetSdkVersion 34
10+
versionCode 10
11+
versionName '1.10.0'
12+
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1313
vectorDrawables.useSupportLibrary = true
1414
}
1515
buildTypes {
@@ -21,19 +21,20 @@ android {
2121
productFlavors {
2222
}
2323
compileOptions {
24-
sourceCompatibility JavaVersion.VERSION_1_8
25-
targetCompatibility JavaVersion.VERSION_1_8
24+
sourceCompatibility JavaVersion.VERSION_17
25+
targetCompatibility JavaVersion.VERSION_17
2626
}
27+
buildToolsVersion '34.0.0'
2728
}
2829

2930
dependencies {
3031
implementation fileTree(include: ['*.jar'], dir: 'libs')
31-
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
32+
androidTestImplementation('androidx.test.espresso:espresso-core:3.5.1', {
3233
exclude group: 'com.android.support', module: 'support-annotations'
3334
})
34-
implementation 'com.android.support:appcompat-v7:28.0.0'
35-
implementation 'com.android.support:design:28.0.0'
36-
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
37-
implementation 'com.android.support:support-v4:28.0.0'
38-
testImplementation 'junit:junit:4.12'
35+
implementation 'androidx.appcompat:appcompat:1.6.1'
36+
implementation 'com.google.android.material:material:1.10.0'
37+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
38+
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
39+
testImplementation 'junit:junit:4.13.2'
3940
}

0 commit comments

Comments
 (0)