Skip to content
This repository was archived by the owner on Jul 11, 2025. It is now read-only.

Commit dfff591

Browse files
authored
Merge pull request #347 from android/yaraki/update
2 parents 1c180c4 + 2ff61d0 commit dfff591

File tree

28 files changed

+92
-90
lines changed

28 files changed

+92
-90
lines changed

DragAndDrop/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ plugins {
2020
}
2121

2222
android {
23-
compileSdk 31
23+
compileSdk 32
2424

2525
defaultConfig {
2626
applicationId "dev.hadrosaur.draganddropsample"
2727
minSdk 24
28-
targetSdk 31
28+
targetSdk 32
2929
versionCode 1
3030
versionName "1.0"
3131

@@ -51,10 +51,10 @@ android {
5151

5252
dependencies {
5353
implementation 'androidx.core:core-ktx:1.7.0'
54-
implementation 'androidx.appcompat:appcompat:1.4.0'
55-
implementation 'com.google.android.material:material:1.4.0'
56-
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
57-
implementation 'androidx.draganddrop:draganddrop:1.0.0-alpha02'
54+
implementation 'androidx.appcompat:appcompat:1.4.1'
55+
implementation 'com.google.android.material:material:1.6.1'
56+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
57+
implementation 'androidx.draganddrop:draganddrop:1.0.0'
5858
testImplementation 'junit:junit:4.13.2'
5959
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
6060
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Oct 21 19:03:22 CEST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

DragAndDrop/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginManagement {
55
mavenCentral()
66
}
77
plugins {
8-
id 'com.android.application' version '7.0.4'
8+
id 'com.android.application' version '7.2.1'
99
id 'org.jetbrains.kotlin.android' version '1.5.31'
1010
}
1111
}

EmojiCompat/app/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616

1717
buildscript {
1818
ext {
19-
kotlin_version = '1.4.21'
19+
kotlin_version = '1.6.21'
2020
}
2121
repositories {
22-
jcenter()
22+
mavenCentral()
2323
}
2424
dependencies {
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -30,11 +30,11 @@ apply plugin: 'com.android.application'
3030
apply plugin: 'kotlin-android'
3131

3232
android {
33-
compileSdkVersion 28
33+
compileSdkVersion 31
3434
defaultConfig {
3535
applicationId "com.example.android.emojicompat"
3636
minSdkVersion 19
37-
targetSdkVersion 28
37+
targetSdkVersion 31
3838
versionCode 1
3939
versionName "1.0"
4040
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -49,15 +49,15 @@ android {
4949

5050
dependencies {
5151
// Support Libraries
52-
implementation 'androidx.appcompat:appcompat:1.0.2'
53-
implementation 'androidx.emoji:emoji:1.0.0'
54-
implementation 'androidx.emoji:emoji-appcompat:1.0.0'
55-
implementation 'androidx.emoji:emoji-bundled:1.0.0'
52+
implementation 'androidx.appcompat:appcompat:1.4.1'
53+
implementation 'androidx.emoji:emoji:1.1.0'
54+
implementation 'androidx.emoji:emoji-appcompat:1.1.0'
55+
implementation 'androidx.emoji:emoji-bundled:1.1.0'
5656
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
5757

5858
// Test
59-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
60-
androidTestImplementation "androidx.test.espresso:espresso-intents:3.1.1"
59+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
60+
androidTestImplementation "androidx.test.espresso:espresso-intents:3.4.0"
6161

62-
testImplementation 'junit:junit:4.12'
62+
testImplementation 'junit:junit:4.13.2'
6363
}

EmojiCompat/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
<activity
3232
android:name=".MainActivity"
33+
android:exported="true"
3334
android:windowSoftInputMode="stateUnchanged">
3435
<intent-filter>
3536
<action android:name="android.intent.action.MAIN"/>

EmojiCompat/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
jcenter()
2121
}
2222
dependencies {
23-
classpath 'com.android.tools.build:gradle:4.1.2'
23+
classpath 'com.android.tools.build:gradle:7.2.1'
2424
}
2525
}
2626

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

ImmersiveMode/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ plugins {
2020
}
2121

2222
android {
23-
compileSdkVersion 31
23+
compileSdkVersion 32
2424
defaultConfig {
2525
applicationId 'com.example.android.immersivemode'
2626
minSdkVersion 31
27-
targetSdkVersion 31
27+
targetSdkVersion 32
2828
versionCode 1
2929
versionName '1.0'
3030
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@@ -41,6 +41,6 @@ android {
4141
dependencies {
4242
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
4343

44-
implementation 'androidx.core:core-ktx:1.6.0'
45-
implementation 'androidx.appcompat:appcompat:1.3.1'
44+
implementation 'androidx.core:core-ktx:1.7.0'
45+
implementation 'androidx.appcompat:appcompat:1.4.1'
4646
}

ImmersiveMode/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
buildscript {
1818
ext {
19-
kotlin_version = '1.5.21'
19+
kotlin_version = '1.6.21'
2020
}
2121
repositories {
2222
google()
2323
mavenCentral()
2424
}
2525
dependencies {
26-
classpath 'com.android.tools.build:gradle:7.0.0'
26+
classpath 'com.android.tools.build:gradle:7.2.1'
2727
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2828
}
2929
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Jul 29 13:23:26 JST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)