Skip to content

Commit

Permalink
Targeting API 33
Browse files Browse the repository at this point in the history
  • Loading branch information
hzw1199 committed Apr 11, 2023
1 parent 36ae5f6 commit 493fee7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
compileSdkVersion 33
defaultConfig {
applicationId "com.wuadam.demo"
minSdkVersion 14
targetSdkVersion 29
targetSdkVersion 33
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
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 @@ -20,7 +20,8 @@
<activity
android:name=".AdvancedControlActivity"
android:label="ADVANCED_CONTROL"></activity>
<activity android:name=".MainActivity">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
buildscript {
repositories {
google()
mavenCentral()
jcenter()

}
Expand All @@ -18,6 +19,7 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
jcenter()

}
Expand Down
4 changes: 2 additions & 2 deletions floatingview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: 'com.github.dcendents.android-maven'
group='com.github.hzw1199'

android {
compileSdkVersion 29
compileSdkVersion 33


defaultConfig {
minSdkVersion 14
targetSdkVersion 29
targetSdkVersion 33
consumerProguardFiles 'proguard-rules.pro'

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down

0 comments on commit 493fee7

Please sign in to comment.