File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/main/java/io/syslogic/demo/colorpicker Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,21 @@ buildscript {
3
3
ext {
4
4
java_version = JavaVersion . VERSION_11 . toString()
5
5
build_tools_version = ' 32.0.0'
6
- agp_version = ' 7.2.1'
7
6
compile_sdk = 32
8
7
target_sdk = 32
9
8
min_sdk = 21
9
+ agp_version = ' 7.2.2'
10
10
kotlin_version = ' 1.7.0'
11
11
kotlin_compiler_extension_version = ' 1.2.0'
12
12
compose_version = ' 1.2.0-rc01'
13
13
material_version = ' 1.6.1'
14
14
appcompat_version = ' 1.4.2'
15
15
preference_version = ' 1.2.0'
16
16
core_version = ' 1.8.0'
17
- nav_version = ' 2.5.0 '
17
+ nav_version = ' 2.5.1 '
18
18
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
21
21
}
22
22
}
23
23
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ task javadoc(type: Javadoc) {
125
125
}
126
126
}
127
127
}
128
+
128
129
javadoc. onlyIf {
129
130
new File (" $buildDir /intermediates/aar_main_jar" ). exists()
130
131
}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ dependencies {
65
65
implementation " androidx.navigation:navigation-ui-ktx:$nav_version "
66
66
67
67
// https://mvnrepository.com/artifact/androidx.compose
68
- implementation " androidx.activity:activity-compose:1.5.0 "
68
+ implementation " androidx.activity:activity-compose:1.5.1 "
69
69
implementation " androidx.compose.ui:ui:$compose_version "
70
70
implementation " androidx.compose.runtime:runtime:$compose_version "
71
71
implementation " androidx.compose.material:material:$compose_version "
Original file line number Diff line number Diff line change 14
14
public class MainActivity extends AppCompatActivity {
15
15
16
16
/** Kept for reference */
17
- @ SuppressWarnings ("unused" )
18
17
private static final int resId = R .layout .fragment_nav_host ;
19
18
20
19
@ Override
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ private int getBackgroundColor(@NonNull View view) {
105
105
* The result of ColorPickerDialogFragment is being set as background color.
106
106
*
107
107
* @param requestKey key used to store the result
108
- * @param result result passed to the callback
108
+ * @param result result passed to the callback
109
109
*/
110
110
@ Override
111
111
public void onFragmentResult (@ NonNull String requestKey , @ NonNull Bundle result ) {
You can’t perform that action at this time.
0 commit comments