You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-17Lines changed: 2 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Inside your `AppDelegate.m`, setup the line sdk by passing the channel id obtain
68
68
//
69
69
// Import the Library
70
70
//
71
-
@import RNLine;
71
+
#import"RNLine-Swift.h"
72
72
73
73
//
74
74
// Setup the plugin using your CHANNEL_ID when the app finishes launching
@@ -135,22 +135,7 @@ Don't forget to add `application` function, as line's instructions indicate.
135
135
```
136
136
137
137
3. Add `minSdkVersion = 17` in `android/build.gradle`
138
-
4. Add LineSDK as a dependency in `android/build.gradle`
139
-
```gradle
140
-
android {
141
-
// Enable Java 1.8 support.
142
-
compileOptions { // <- add this block if didn't setup
143
-
sourceCompatibility JavaVersion.VERSION_1_8
144
-
targetCompatibility JavaVersion.VERSION_1_8
145
-
}
146
-
...
147
-
dependencies {
148
-
...
149
-
implementation 'com.linecorp.linesdk:linesdk:5.7.0' // <- add this line
150
-
}
151
-
}
152
-
```
153
-
5. In your manifest add `xmlns:tools="http://schemas.android.com/tools"` in your `manifest` tag and also `tools:replace="android:allowBackup"` in your `application` tag
138
+
4. In your manifest add `xmlns:tools="http://schemas.android.com/tools"` in your `manifest` tag and also `tools:replace="android:allowBackup"` in your `application` tag
0 commit comments