Mobile Multiplatform gradle plugin
This is a Gradle plugin for simple setup of Kotlin Multiplatform mobile Gradle modules.
Setup
buildSrc/build.gradle.kts
Usage
Setup mobile targets without config
build.gradle.kts
Plugin automatically setup android, ios targets.
Android target also automatically configured with dev.icerock.mobile.multiplatform.android-manifest
and dev.icerock.mobile.multiplatform.android-sources
plugins.
By default used ios()
targets creation with intermediate source set iosMain
. To disable it add
into gradle.properties
line:
mobile.multiplatform.useIosShortcut=false
To disable warning about used ios targets add into gradle.properties
line:
mobile.multiplatform.iosTargetWarning=false
Setup AndroidManifest.xml in androidMain sourceSet
build.gradle.kts
After enable this plugin you can move AndroidManifest.xml
from src/main/AndroidManifest.xml
to
src/androidMain/AndroidManifest.xml
Setup android sourceSets in android prefixed source sets
build.gradle.kts
After enable this plugin you can move android's main
source set to androidMain
, release
to androidRelease
, test
to androidTest
etc.
Setup cocoapods integration for iOS
build.gradle.kts
Plugin will setup sync
gradle tasks in group cocoapods
for cocoapods
integration.
Example of podspec
for integration here - https://github.com/icerockdev/moko-template/blob/master/mpp-library/MultiPlatformLibrary.podspec
Add artifacts to export
Setup cocoapods integration for all Apple frameworks
build.gradle.kts
with framework
configuration you can add dependencies to export (just like in iOS framework).
Setup CocoaPods interop
build.gradle.kts
Also path to Pods project and configuration can be set globally into gradle.properties
podsProject
should be relative path from root gradle project.
Multiple plugins in one line (deprecated, saved for backward compatibility)
This line will enable:
dev.icerock.mobile.multiplatform.cocoapods
dev.icerock.mobile.multiplatform.targets
- publish of android build variants -
release
anddebug
Definition of dependencies (deprecated, saved for backward compatibility)
Setup dependencies (deprecated, saved for backward compatibility)
build.gradle.kts
License
Copyright 2019 IceRock MAG Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
https://github.com/icerockdev/mobile-multiplatform-gradle-plugin