Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hyochan committed Sep 1, 2024
1 parent c29a271 commit 5bb99bf
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
buy_me_a_coffee: dooboolab
buy_me_a_coffee: hyochan
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"typescript.preferences.importModuleSpecifier": "relative",
"prettier.configPath": ".prettierrc.js",
"cSpell.words": [
"hyochan",
"Pressable",
"Skus"
]
Expand Down
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# expo-iap
<img src="https://github.com/user-attachments/assets/f51a4b1b-b257-47bf-afe7-5ef8692f0594" height="200"/>

In App Purchase module in Expo

Expand All @@ -23,17 +23,10 @@ npm install expo-iap

### Configure for iOS

Run `npx pod-install` after installing the npm package.
Sine we only support `StoreKit`, `deploymentTarget` should be `15.0`.
Run `npx pod-install` after installing the npm package. Sine we only support `StoreKit`, `deploymentTarget` should be `15.0`.

```json
"ios": {
"deploymentTarget": "15.0"
},
```

### Configure for Android

# Contributing

Contributions are very welcome! Please refer to guidelines described in the [contributing guide]( https://github.com/expo/expo#contributing).
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdk rootProject.ext.compileSdkVersion

namespace 'com.dooboolab.test'
namespace 'com.crossplatformkorea.test'
defaultConfig {
applicationId 'com.dooboolab.test'
applicationId 'com.crossplatformkorea.test'
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 4
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="com.dooboolab.test"/>
<data android:scheme="com.crossplatformkorea.test"/>
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.dooboolab.test
package com.crossplatformkorea.test

import android.os.Build
import android.os.Bundle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.dooboolab.test
package com.crossplatformkorea.test

import android.app.Application
import android.content.res.Configuration
Expand Down
4 changes: 2 additions & 2 deletions example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.dooboolab.test"
"bundleIdentifier": "com.crossplatformkorea.test"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"versionCode": 4,
"package": "com.dooboolab.test"
"package": "com.crossplatformkorea.test"
},
"extra": {
"eas": {
Expand Down
4 changes: 2 additions & 2 deletions example/ios/test.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
"-lc++",
);
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
PRODUCT_BUNDLE_IDENTIFIER = com.dooboolab.test;
PRODUCT_BUNDLE_IDENTIFIER = com.crossplatformkorea.test;
PRODUCT_NAME = "test";
SWIFT_OBJC_BRIDGING_HEADER = "test/test-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand Down Expand Up @@ -388,7 +388,7 @@
"-lc++",
);
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
PRODUCT_BUNDLE_IDENTIFIER = com.dooboolab.test;
PRODUCT_BUNDLE_IDENTIFIER = com.crossplatformkorea.test;
PRODUCT_NAME = "test";
SWIFT_OBJC_BRIDGING_HEADER = "test/test-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down
2 changes: 1 addition & 1 deletion example/ios/test/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>com.dooboolab.test</string>
<string>com.crossplatformkorea.test</string>
</array>
</dict>
</array>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"bugs": {
"url": "https://github.com/hyochan/issues"
},
"author": "hyochan <dooboolab@gmail.com> (https://github.com/hyochan)",
"author": "hyochan <hyochan.dev@gmail.com> (https://github.com/hyochan)",
"license": "MIT",
"homepage": "https://github.com/hyochan#readme",
"dependencies": {},
Expand Down

0 comments on commit 5bb99bf

Please sign in to comment.