Skip to content

Commit 8e9b00e

Browse files
authored
Merge pull request #2 from adjust/ugi-review-ios
Final review
2 parents 9376174 + b471878 commit 8e9b00e

File tree

86 files changed

+1355
-1228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+1355
-1228
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,4 @@ atlassian-ide-plugin.xml
9292

9393
# exceptions
9494
!*adjust-android.jar
95+
!android/libs/adjust*.jar

.npmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ node_modules
1010
/ios/**/*xcuserdata*
1111
/ios/**/*xcshareddata*
1212

13+
# Adjust SDK
14+
ext/
15+
scripts/
16+
example/

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
### Version 4.10.0 (1st December 2016)
2+
#### Added
3+
- Initial release of the adjust SDK for React Native.
4+
5+
#### Native SDKs
6+
- [[email protected]][ios_sdk_v4.10.3]
7+
- [[email protected]][android_sdk_v4.10.4]
8+
9+
[ios_sdk_v4.10.3]: https://github.com/adjust/ios_sdk/tree/v4.10.3
10+
11+
[android_sdk_v4.10.4]: https://github.com/adjust/android_sdk/tree/v4.10.4

README.md

Lines changed: 243 additions & 152 deletions
Large diffs are not rendered by default.

android/libs/adjust-4.10.4.jar

141 KB
Binary file not shown.

android/src/main/AndroidManifest.xml

100755100644
Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.adjust.nativemodule">
3+
<uses-permission android:name="android.permission.INTERNET" />
34
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
4-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
55

6-
<activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
7-
<intent-filter>
8-
<action android:name="android.intent.action.MAIN" />
9-
<category android:name="android.intent.category.LAUNCHER" />
10-
</intent-filter>
11-
<intent-filter android:label="filter_react_native">
12-
<action android:name="android.intent.action.VIEW" />
13-
<category android:name="android.intent.category.DEFAULT" />
14-
<category android:name="android.intent.category.BROWSABLE" />
15-
<data android:scheme="adjustExample" android:host="home" />
16-
</intent-filter>
17-
</activity>
6+
<application>
7+
<receiver
8+
android:name="com.adjust.sdk.AdjustReferrerReceiver"
9+
android:exported="true">
10+
<intent-filter>
11+
<action android:name="com.android.vending.INSTALL_REFERRER" />
12+
</intent-filter>
13+
</receiver>
14+
</application>
1815
</manifest>

0 commit comments

Comments
 (0)