Skip to content

Commit

Permalink
Update Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedGamalElsayed committed Jan 6, 2023
1 parent 2b3989f commit 8805d83
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
13 changes: 9 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 27
compileSdkVersion 33
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 15
targetSdkVersion 27
targetSdkVersion 33
versionCode 4
versionName "1.4.0"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}

dependencies {
compile 'com.android.support:appcompat-v7:27.1.1'
compile 'com.sumup:merchant-api:1.4.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.sumup:merchant-api:1.4.0'
}
6 changes: 4 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@

<activity
android:name="com.sumup.apisampleapp.MainActivity"
android:label="@string/app_name">
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name="com.sumup.apisampleapp.URLResponseActivity"
android:label="Payment Result">
android:label="Payment Result"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<action android:name="com.sumup.apisampleapp.URLResponseActivity"/>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath 'com.android.tools.build:gradle:7.3.1'
}
}

Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Fri Jan 06 14:31:51 CET 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 8805d83

Please sign in to comment.