Skip to content

Commit 7f2d0f6

Browse files
author
Krzysztof Nawrot
authored
Merge pull request #22 from Parseus/dev
Dev -> master: version 2.3.0
2 parents b4d6cfd + be68010 commit 7f2d0f6

71 files changed

Lines changed: 1145 additions & 439 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 51 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,61 @@
1+
# Built application files
2+
*.apk
3+
*.aar
4+
*.ap_
5+
*.aab
6+
7+
# Files for the ART/Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
17+
18+
# Gradle files
19+
.gradle/
20+
build/
21+
22+
# Local configuration file (sdk path, etc)
23+
local.properties
24+
25+
# Log Files
26+
*.log
27+
28+
# Android Studio Navigation editor temp files
29+
.navigation/
30+
31+
# Android Studio captures folder
32+
captures/
33+
34+
# IntelliJ
135
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/caches/build_file_checksums.ser
5-
/.idea/libraries
6-
/.idea/modules.xml
7-
/.idea/workspace.xml
36+
.idea/kotlinc.xml
37+
.idea/workspace.xml
38+
.idea/tasks.xml
39+
.idea/gradle.xml
40+
.idea/assetWizardSettings.xml
41+
.idea/dictionaries
42+
.idea/libraries
43+
# Android Studio 3 in .gitignore file.
44+
.idea/caches
45+
.idea/modules.xml
46+
47+
# Version control
48+
vcs.xml
49+
850
.DS_Store
9-
/build
10-
/captures
1151
.externalNativeBuild
12-
.idea/assetWizardSettings.xml
52+
.cxx
53+
1354
app/build
1455
app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/asynclayoutinflater/R.java
1556
app/nonFree
1657
app/nonFreeMobile
1758
app/standardMobile
1859
app/standardTv
1960
app/standard
20-
.idea/kotlinc.xml
61+
.idea/deploymentTargetDropDown.xml

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 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: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

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

.idea/misc.xml

Lines changed: 14 additions & 1 deletion
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 & 13 deletions
This file was deleted.

app/build.gradle

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-kapt'
44

55
android {
6-
compileSdkVersion 30
6+
compileSdkVersion 31
77
defaultConfig {
88
applicationId "com.parseus.codecinfo"
99
minSdkVersion 16
10-
targetSdkVersion 30
11-
versionCode 20
12-
versionName "2.2.2"
10+
targetSdkVersion 31
11+
versionCode 21
12+
versionName "2.3.0"
1313
resConfigs "en"
1414

1515
vectorDrawables.useSupportLibrary = true
@@ -64,12 +64,12 @@ android {
6464
}
6565

6666
compileOptions {
67-
sourceCompatibility JavaVersion.VERSION_1_8
68-
targetCompatibility JavaVersion.VERSION_1_8
67+
sourceCompatibility JavaVersion.VERSION_11
68+
targetCompatibility JavaVersion.VERSION_11
6969
}
7070

7171
kotlinOptions {
72-
jvmTarget = "1.8"
72+
jvmTarget = "11"
7373
}
7474

7575
packagingOptions {
@@ -95,9 +95,9 @@ configurations {
9595

9696
dependencies {
9797
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
98-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
98+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
9999

100-
implementation 'androidx.appcompat:appcompat:1.3.0'
100+
implementation 'androidx.appcompat:appcompat:1.3.1'
101101
implementation "androidx.core:core-ktx:1.6.0"
102102
implementation 'androidx.preference:preference-ktx:1.1.1'
103103

@@ -110,15 +110,17 @@ dependencies {
110110
standardMobileDebugImplementation 'androidx.multidex:multidex:2.0.1'
111111
nonFreeMobileDebugImplementation 'androidx.multidex:multidex:2.0.1'
112112

113-
tvImplementation 'androidx.leanback:leanback:1.1.0-rc01'
114-
tvImplementation 'androidx.leanback:leanback-preference:1.1.0-rc01'
113+
tvImplementation 'androidx.leanback:leanback:1.2.0-alpha01'
114+
tvImplementation 'androidx.leanback:leanback-preference:1.2.0-alpha01'
115115

116-
mobileImplementation 'androidx.constraintlayout:constraintlayout:2.0.4'
117-
mobileImplementation 'com.github.ditacristianionut:AppInfoBadge:1.3'
118-
mobileImplementation 'com.google.android.material:material:1.4.0'
116+
mobileImplementation 'androidx.constraintlayout:constraintlayout:2.1.0'
117+
mobileImplementation 'androidx.core:core-splashscreen:1.0.0-alpha01'
118+
mobileImplementation 'androidx.webkit:webkit:1.4.0'
119+
mobileImplementation 'com.github.marcoscgdev:Licenser:2.0.0'
120+
mobileImplementation 'com.google.android.material:material:1.5.0-alpha03'
119121

120122
nonFreeMobileImplementation fileTree(include: ['*.jar'], dir: 'libs')
121-
nonFreeMobileImplementation 'com.google.android.play:core:1.10.0'
123+
nonFreeMobileImplementation 'com.google.android.play:core:1.10.1'
122124
nonFreeMobileImplementation ('com.google.android.play:core-ktx:1.8.1') {
123125
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7'
124126
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
android:installLocation="preferExternal"
55
package="com.parseus.codecinfo">
66

7-
<uses-sdk tools:overrideLibrary="com.dci.dev.appinfobadge, com.afollestad.recyclical" />
8-
97
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
108

119
<queries>

app/src/main/assets/changelog.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<html>
22
<body>
33

4+
<h2>Version 2.3.0</h2>
5+
<p>Added detecting features introduced in Android 12.</p>
6+
<p>Added optional dynamic theming on Android 12 and newer.</p>
7+
<p>Input channel count now shows both minimal and maximal values.</p>
8+
<p>Bugfixes and general improvements.</p>
9+
410
<h2>Version 2.2.2</h2>
511
<p>Bugfixes and general improvements.</p>
612

0 commit comments

Comments
 (0)