Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comment out ioscombined module in settings.gradle for fixing Android Studio unresolved reference #753

Merged
merged 1 commit into from Feb 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion frontend/ios/README.md
Expand Up @@ -5,7 +5,13 @@
- XCode 10.1 (Swift 4.2.1)
- JDK 1.8 (never use higher jdk versions)

Initially, you need to run the commands below.
Initially, please uncomment `':frontend:ioscombined'` in settings.gradle

```
':frontend:ioscombined',
```

You need to run the commands below.

```
cd frontend/ios
Expand Down
4 changes: 3 additions & 1 deletion settings.gradle
@@ -1,4 +1,6 @@
include ':frontend:android', ':frontend:ioscombined',
include ':frontend:android',
// If you create iOS app, Please uncomment following
// ':frontend:ioscombined',
':frontendcomponent:androidcomponent',
':frontendcomponent:androidtestcomponent',
':feature:session',
Expand Down