Skip to content

Commit cf95dbf

Browse files
committed
Lib_updates
1 parent 6627a98 commit cf95dbf

File tree

5 files changed

+20
-19
lines changed

5 files changed

+20
-19
lines changed

app/build.gradle

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

33
android {
4-
compileSdkVersion 30
4+
compileSdkVersion 33
55
defaultConfig {
66
applicationId "com.example.lezh1k.sensordatacollector"
7-
minSdkVersion 18
8-
targetSdkVersion 30
7+
minSdkVersion 21
8+
targetSdkVersion 33
99
versionCode 1
1010
versionName "1.0"
1111
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@@ -27,15 +27,15 @@ android {
2727

2828
dependencies {
2929
implementation fileTree(dir: 'libs', include: ['*.jar'])
30-
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
31-
testImplementation 'junit:junit:4.13'
32-
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
33-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
30+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
31+
testImplementation 'junit:junit:4.13.2'
32+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
33+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
3434

3535
api group: 'net.sf.marineapi', name: 'marineapi', version: '0.10.0'
36-
api 'com.google.android.gms:play-services-location:17.1.0'
37-
api 'androidx.preference:preference:1.1.1'
38-
implementation 'com.google.android.gms:play-services-maps:17.0.0'
36+
api 'com.google.android.gms:play-services-location:21.0.1'
37+
api 'androidx.preference:preference:1.2.0'
38+
implementation 'com.google.android.gms:play-services-maps:18.1.0'
3939
api ('com.mapbox.mapboxsdk:mapbox-android-sdk:5.1.5@aar') {
4040
transitive = true
4141
}

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
<activity
2020
android:name=".MainActivity"
2121
android:screenOrientation="portrait"
22-
android:configChanges="keyboardHidden|orientation|screenSize">
22+
android:configChanges="keyboardHidden|orientation|screenSize"
23+
android:exported="true">
2324
<intent-filter>
2425
<action android:name="android.intent.action.MAIN" />
2526
<category android:name="android.intent.category.LAUNCHER" />

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
}
1414
dependencies {
1515
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
16-
classpath "com.android.tools.build:gradle:4.0.2"
16+
classpath 'com.android.tools.build:gradle:4.2.2'
1717

1818
// NOTE: Do not place your application dependencies here; they belong
1919
// in the individual module build.gradle files

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

madlocationmanager/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ ext {
1313
}
1414

1515
android {
16-
compileSdkVersion 30
16+
compileSdkVersion 33
1717
defaultConfig {
1818
minSdkVersion 18
19-
targetSdkVersion 30
19+
targetSdkVersion 33
2020
versionCode 1
2121
versionName "1.0"
2222

@@ -40,10 +40,10 @@ dependencies {
4040
api 'androidx.legacy:legacy-support-v4:1.0.0'
4141
api 'com.google.android.material:material:1.2.1'
4242
api 'androidx.recyclerview:recyclerview:1.1.0'
43-
implementation "com.google.android.gms:play-services-location:17.1.0"
44-
testImplementation 'junit:junit:4.13'
45-
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
46-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
43+
implementation "com.google.android.gms:play-services-location:21.0.1"
44+
testImplementation 'junit:junit:4.13.2'
45+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
46+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4747
}
4848

4949
task sourceJar(type: Jar) {

0 commit comments

Comments
 (0)