Skip to content

Commit 958ddeb

Browse files
committed
some code cleanup.
1 parent 4d86812 commit 958ddeb

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ buildscript {
33
ext {
44
java_version = JavaVersion.VERSION_11.toString()
55
build_tools_version = '32.0.0'
6-
agp_version = '7.2.1'
76
compile_sdk = 32
87
target_sdk = 32
98
min_sdk = 21
9+
agp_version = '7.2.2'
1010
kotlin_version = '1.7.0'
1111
kotlin_compiler_extension_version = '1.2.0'
1212
compose_version = '1.2.0-rc01'
1313
material_version = '1.6.1'
1414
appcompat_version = '1.4.2'
1515
preference_version = '1.2.0'
1616
core_version = '1.8.0'
17-
nav_version = '2.5.0'
17+
nav_version = '2.5.1'
1818
junit_version = '4.13.2'
19-
version_name = '1.1.1'
20-
version_code = 11
19+
version_name = '1.1.2'
20+
version_code = 12
2121
}
2222
}
2323

library/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ task javadoc(type: Javadoc) {
125125
}
126126
}
127127
}
128+
128129
javadoc.onlyIf {
129130
new File("$buildDir/intermediates/aar_main_jar").exists()
130131
}

mobile/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ dependencies {
6565
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
6666

6767
// https://mvnrepository.com/artifact/androidx.compose
68-
implementation "androidx.activity:activity-compose:1.5.0"
68+
implementation "androidx.activity:activity-compose:1.5.1"
6969
implementation "androidx.compose.ui:ui:$compose_version"
7070
implementation "androidx.compose.runtime:runtime:$compose_version"
7171
implementation "androidx.compose.material:material:$compose_version"

mobile/src/main/java/io/syslogic/demo/colorpicker/activity/MainActivity.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
public class MainActivity extends AppCompatActivity {
1515

1616
/** Kept for reference */
17-
@SuppressWarnings("unused")
1817
private static final int resId = R.layout.fragment_nav_host;
1918

2019
@Override

mobile/src/main/java/io/syslogic/demo/colorpicker/fragment/HomeFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private int getBackgroundColor(@NonNull View view) {
105105
* The result of ColorPickerDialogFragment is being set as background color.
106106
*
107107
* @param requestKey key used to store the result
108-
* @param result result passed to the callback
108+
* @param result result passed to the callback
109109
*/
110110
@Override
111111
public void onFragmentResult(@NonNull String requestKey, @NonNull Bundle result) {

0 commit comments

Comments
 (0)