Skip to content

Commit

Permalink
⬆ version 1.28 update build tools
Browse files Browse the repository at this point in the history
android:exported=true required by Andoid 12 when intent filter set
https://developer.android.com/guide/topics/manifest/activity-element#exported
  • Loading branch information
calin-darie committed Jan 4, 2023
1 parent 5740c1e commit 962f5ab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.1"
compileSdkVersion 33
buildToolsVersion "33.0.1"
defaultConfig {
applicationId "varzan.extraKeyboardLayouts"
minSdkVersion 16
targetSdkVersion 29
versionCode 1027
versionName "1.27"
targetSdkVersion 33
versionCode 1028
versionName "1.28"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
android:label="@string/app_name"
android:supportsRtl="true">
<receiver android:name=".InputDeviceReceiver"
android:label="@string/keyboard_layouts_label">
android:label="@string/keyboard_layouts_label"
android:exported="true">
<intent-filter>
<action android:name="android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS" />
</intent-filter>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.android.tools.build:gradle:7.3.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Jul 30 00:19:01 EEST 2019
#Wed Jan 04 22:56:03 EET 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 962f5ab

Please sign in to comment.