Skip to content

Commit

Permalink
targetsdk updated to 32 and exported added to MainActivity and Billin…
Browse files Browse the repository at this point in the history
…gReceiver
  • Loading branch information
shk_ayan committed Jun 1, 2022
1 parent c992c07 commit c933f84
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "ir.cafebazaar.poolakeysample"
minSdkVersion buildVersions.minSdkVersion
targetSdkVersion buildVersions.targetSdkVersion
versionCode 1
versionName "1.0.0"
versionCode 2
versionName "1.0.1"
}
Properties properties = new Properties()
properties.load(rootProject.file('app.properties').newDataInputStream())
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 @@ -11,7 +11,8 @@
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">

<activity android:name="ir.cafebazaar.poolakeysample.MainActivity">
<activity android:name="ir.cafebazaar.poolakeysample.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down
3 changes: 2 additions & 1 deletion poolakey/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<uses-permission android:name="com.farsitel.bazaar.permission.PAY_THROUGH_BAZAAR" />

<application>
<receiver android:name=".receiver.BillingReceiver">
<receiver android:name=".receiver.BillingReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.farsitel.bazaar.purchase" />
<action android:name="com.farsitel.bazaar.billingSupport" />
Expand Down
6 changes: 3 additions & 3 deletions version-manager.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ ext {
]

buildVersions = [
'compileSdkVersion': 29,
'compileSdkVersion': 32,
'buildToolsVersion': '29.0.3',
'minSdkVersion' : 14,
'targetSdkVersion' : 29
'targetSdkVersion' : 32
]

poolakeyVersion = "1.0.0-beta01"
poolakeyVersion = "1.0.1-beta01"

}

0 comments on commit c933f84

Please sign in to comment.