feat(template): add mobile projects, build script, fill initial src code (#305)
parent
0fed10fdce
commit
775581d824
@ -0,0 +1 @@
|
|||||||
|
/.tauri
|
@ -0,0 +1,2 @@
|
|||||||
|
/build
|
||||||
|
/.tauri
|
@ -0,0 +1,45 @@
|
|||||||
|
plugins {
|
||||||
|
id("com.android.library")
|
||||||
|
id("org.jetbrains.kotlin.android")
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
namespace = "{{android_package_id}}"
|
||||||
|
compileSdk = 32
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdk = 24
|
||||||
|
targetSdk = 32
|
||||||
|
|
||||||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
consumerProguardFiles("consumer-rules.pro")
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
isMinifyEnabled = false
|
||||||
|
proguardFiles(
|
||||||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
|
"proguard-rules.pro"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "1.8"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
implementation("androidx.core:core-ktx:1.9.0")
|
||||||
|
implementation("androidx.appcompat:appcompat:1.6.0")
|
||||||
|
implementation("com.google.android.material:material:1.7.0")
|
||||||
|
testImplementation("junit:junit:4.13.2")
|
||||||
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||||
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
||||||
|
implementation(project(":tauri-android"))
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
# Add project specific ProGuard rules here.
|
||||||
|
# You can control the set of applied configuration files using the
|
||||||
|
# proguardFiles setting in build.gradle.
|
||||||
|
#
|
||||||
|
# For more details, see
|
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||||
|
|
||||||
|
# If your project uses WebView with JS, uncomment the following
|
||||||
|
# and specify the fully qualified class name to the JavaScript interface
|
||||||
|
# class:
|
||||||
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||||
|
# public *;
|
||||||
|
#}
|
||||||
|
|
||||||
|
# Uncomment this to preserve the line number information for
|
||||||
|
# debugging stack traces.
|
||||||
|
#-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
# If you keep the line number information, uncomment this to
|
||||||
|
# hide the original source file name.
|
||||||
|
#-renamesourcefileattribute SourceFile
|
@ -0,0 +1,2 @@
|
|||||||
|
include ':tauri-android'
|
||||||
|
project(':tauri-android').projectDir = new File('./.tauri/tauri-api')
|
@ -0,0 +1,24 @@
|
|||||||
|
package {{android_package_id}}
|
||||||
|
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instrumented test, which will execute on an Android device.
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class ExampleInstrumentedTest {
|
||||||
|
@Test
|
||||||
|
fun useAppContext() {
|
||||||
|
// Context of the app under test.
|
||||||
|
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||||
|
assertEquals("{{android_package_id}}", appContext.packageName)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
</manifest>
|
@ -0,0 +1,19 @@
|
|||||||
|
package {{android_package_id}}
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import app.tauri.annotation.Command
|
||||||
|
import app.tauri.annotation.TauriPlugin
|
||||||
|
import app.tauri.plugin.JSObject
|
||||||
|
import app.tauri.plugin.Plugin
|
||||||
|
import app.tauri.plugin.Invoke
|
||||||
|
|
||||||
|
@TauriPlugin
|
||||||
|
class ExamplePlugin(private val activity: Activity): Plugin(activity) {
|
||||||
|
@Command
|
||||||
|
fun ping(invoke: Invoke) {
|
||||||
|
val value = invoke.getString("value") ?: ""
|
||||||
|
val ret = JSObject()
|
||||||
|
ret.put("value", value)
|
||||||
|
invoke.resolve(ret)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package {{android_package_id}}
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Example local unit test, which will execute on the development machine (host).
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
class ExampleUnitTest {
|
||||||
|
@Test
|
||||||
|
fun addition_isCorrect() {
|
||||||
|
assertEquals(4, 2 + 2)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
use std::process::exit;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
if let Err(error) = tauri_build::mobile::PluginBuilder::new()
|
||||||
|
.android_path("android")
|
||||||
|
.ios_path("ios")
|
||||||
|
.run()
|
||||||
|
{
|
||||||
|
println!("{error:#}");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
.DS_Store
|
||||||
|
/.build
|
||||||
|
/Packages
|
||||||
|
/*.xcodeproj
|
||||||
|
xcuserdata/
|
||||||
|
DerivedData/
|
||||||
|
.swiftpm/config/registries.json
|
||||||
|
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
|
||||||
|
.netrc
|
||||||
|
Package.resolved
|
@ -0,0 +1,31 @@
|
|||||||
|
// swift-tools-version:5.3
|
||||||
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
||||||
|
|
||||||
|
import PackageDescription
|
||||||
|
|
||||||
|
let package = Package(
|
||||||
|
name: "tauri-plugin-{{ plugin_name }}",
|
||||||
|
platforms: [
|
||||||
|
.iOS(.v13),
|
||||||
|
],
|
||||||
|
products: [
|
||||||
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
||||||
|
.library(
|
||||||
|
name: "tauri-plugin-{{ plugin_name }}",
|
||||||
|
type: .static,
|
||||||
|
targets: ["tauri-plugin-{{ plugin_name }}"]),
|
||||||
|
],
|
||||||
|
dependencies: [
|
||||||
|
.package(name: "Tauri", path: "../.tauri/tauri-api")
|
||||||
|
],
|
||||||
|
targets: [
|
||||||
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
||||||
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
||||||
|
.target(
|
||||||
|
name: "tauri-plugin-{{ plugin_name }}",
|
||||||
|
dependencies: [
|
||||||
|
.byName(name: "Tauri")
|
||||||
|
],
|
||||||
|
path: "Sources")
|
||||||
|
]
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
# Tauri Plugin {{ plugin_name_original }}
|
||||||
|
|
||||||
|
A description of this package.
|
@ -0,0 +1,16 @@
|
|||||||
|
import UIKit
|
||||||
|
import WebKit
|
||||||
|
import Tauri
|
||||||
|
import SwiftRs
|
||||||
|
|
||||||
|
class ExamplePlugin: Plugin {
|
||||||
|
@objc public func ping(_ invoke: Invoke) throws {
|
||||||
|
let value = invoke.getString("value")
|
||||||
|
invoke.resolve(["value": value as Any])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@_cdecl("init_plugin_{{ plugin_name_snake_case }}")
|
||||||
|
func initPlugin(name: SRString, webview: WKWebView?) {
|
||||||
|
Tauri.registerPlugin(webview: webview, name: name.toString(), plugin: ExamplePlugin())
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
import XCTest
|
||||||
|
@testable import ExamplePlugin
|
||||||
|
|
||||||
|
final class ExamplePluginTests: XCTestCase {
|
||||||
|
func testExample() throws {
|
||||||
|
let plugin = ExamplePlugin()
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
use tauri::{AppHandle, command, Runtime, State, Window};
|
||||||
|
|
||||||
|
use crate::{MyState, Result};
|
||||||
|
|
||||||
|
#[command]
|
||||||
|
pub(crate) async fn execute<R: Runtime>(
|
||||||
|
_app: AppHandle<R>,
|
||||||
|
_window: Window<R>,
|
||||||
|
state: State<'_, MyState>,
|
||||||
|
) -> Result<String> {
|
||||||
|
state.0.lock().unwrap().insert("key".into(), "value".into());
|
||||||
|
Ok("success".to_string())
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
use serde::de::DeserializeOwned;
|
||||||
|
use tauri::{plugin::PluginApi, AppHandle, Runtime};
|
||||||
|
|
||||||
|
use crate::models::*;
|
||||||
|
|
||||||
|
pub fn init<R: Runtime, C: DeserializeOwned>(
|
||||||
|
app: &AppHandle<R>,
|
||||||
|
_api: PluginApi<R, C>,
|
||||||
|
) -> crate::Result<{{ plugin_name_pascal_case }}<R>> {
|
||||||
|
Ok({{ plugin_name_pascal_case }}(app.clone()))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Access to the {{ plugin_name }} APIs.
|
||||||
|
pub struct {{ plugin_name_pascal_case }}<R: Runtime>(AppHandle<R>);
|
||||||
|
|
||||||
|
impl<R: Runtime> {{ plugin_name_pascal_case }}<R> {
|
||||||
|
pub fn ping(&self, payload: PingRequest) -> crate::Result<PingResponse> {
|
||||||
|
Ok(PingResponse {
|
||||||
|
value: payload.value,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
use serde::{ser::Serializer, Serialize};
|
||||||
|
|
||||||
|
pub type Result<T> = std::result::Result<T, Error>;
|
||||||
|
|
||||||
|
#[derive(Debug, thiserror::Error)]
|
||||||
|
pub enum Error {
|
||||||
|
#[error(transparent)]
|
||||||
|
Io(#[from] std::io::Error),
|
||||||
|
#[cfg(mobile)]
|
||||||
|
#[error(transparent)]
|
||||||
|
PluginInvoke(#[from] tauri::plugin::mobile::PluginInvokeError),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Serialize for Error {
|
||||||
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
||||||
|
where
|
||||||
|
S: Serializer,
|
||||||
|
{
|
||||||
|
serializer.serialize_str(self.to_string().as_ref())
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
use tauri::{
|
||||||
|
plugin::{Builder, TauriPlugin},
|
||||||
|
Manager, Runtime,
|
||||||
|
};
|
||||||
|
|
||||||
|
use std::{collections::HashMap, sync::Mutex};
|
||||||
|
|
||||||
|
pub use models::*;
|
||||||
|
|
||||||
|
#[cfg(desktop)]
|
||||||
|
mod desktop;
|
||||||
|
#[cfg(mobile)]
|
||||||
|
mod mobile;
|
||||||
|
|
||||||
|
mod commands;
|
||||||
|
mod error;
|
||||||
|
mod models;
|
||||||
|
|
||||||
|
pub use error::{Error, Result};
|
||||||
|
|
||||||
|
#[cfg(desktop)]
|
||||||
|
use desktop::{{ plugin_name_pascal_case }};
|
||||||
|
#[cfg(mobile)]
|
||||||
|
use mobile::{{ plugin_name_pascal_case }};
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
struct MyState(Mutex<HashMap<String, String>>);
|
||||||
|
|
||||||
|
/// Extensions to [`tauri::App`], [`tauri::AppHandle`] and [`tauri::Window`] to access the {{ plugin_name }} APIs.
|
||||||
|
pub trait {{ plugin_name_pascal_case }}Ext<R: Runtime> {
|
||||||
|
fn {{ plugin_name_snake_case }}(&self) -> &{{ plugin_name_pascal_case }}<R>;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<R: Runtime, T: Manager<R>> crate::{{ plugin_name_pascal_case }}Ext<R> for T {
|
||||||
|
fn {{ plugin_name_snake_case }}(&self) -> &{{ plugin_name_pascal_case }}<R> {
|
||||||
|
self.state::<{{ plugin_name_pascal_case }}<R>>().inner()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Initializes the plugin.
|
||||||
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
||||||
|
Builder::new("{{ plugin_name }}")
|
||||||
|
.invoke_handler(tauri::generate_handler![commands::execute])
|
||||||
|
.setup(|app, api| {
|
||||||
|
#[cfg(mobile)]
|
||||||
|
let {{ plugin_name_snake_case }} = mobile::init(app, api)?;
|
||||||
|
#[cfg(desktop)]
|
||||||
|
let {{ plugin_name_snake_case }} = desktop::init(app, api)?;
|
||||||
|
app.manage({{ plugin_name_snake_case }});
|
||||||
|
|
||||||
|
// manage state so it is accessible by the commands
|
||||||
|
app.manage(MyState::default());
|
||||||
|
Ok(())
|
||||||
|
})
|
||||||
|
.build()
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
use serde::de::DeserializeOwned;
|
||||||
|
use tauri::{
|
||||||
|
plugin::{PluginApi, PluginHandle},
|
||||||
|
AppHandle, Runtime,
|
||||||
|
};
|
||||||
|
|
||||||
|
use crate::models::*;
|
||||||
|
|
||||||
|
#[cfg(target_os = "android")]
|
||||||
|
const PLUGIN_IDENTIFIER: &str = "{{ android_package_id }}";
|
||||||
|
|
||||||
|
#[cfg(target_os = "ios")]
|
||||||
|
tauri::ios_plugin_binding!(init_plugin_{{ plugin_name }});
|
||||||
|
|
||||||
|
// initializes the Kotlin or Swift plugin classes
|
||||||
|
pub fn init<R: Runtime, C: DeserializeOwned>(
|
||||||
|
_app: &AppHandle<R>,
|
||||||
|
api: PluginApi<R, C>,
|
||||||
|
) -> crate::Result<{{ plugin_name_pascal_case }}<R>> {
|
||||||
|
#[cfg(target_os = "android")]
|
||||||
|
let handle = api.register_android_plugin(PLUGIN_IDENTIFIER, "ExamplePlugin")?;
|
||||||
|
#[cfg(target_os = "ios")]
|
||||||
|
let handle = api.register_ios_plugin(init_plugin_{{ plugin_name }})?;
|
||||||
|
Ok({{ plugin_name_pascal_case }}(handle))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Access to the {{ plugin_name }} APIs.
|
||||||
|
pub struct {{ plugin_name_pascal_case }}<R: Runtime>(PluginHandle<R>);
|
||||||
|
|
||||||
|
impl<R: Runtime> {{ plugin_name_pascal_case }}<R> {
|
||||||
|
pub fn ping(&self, payload: PingRequest) -> crate::Result<PingResponse> {
|
||||||
|
self
|
||||||
|
.0
|
||||||
|
.run_mobile_plugin("ping", payload)
|
||||||
|
.map_err(Into::into)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
#[derive(Debug, Serialize)]
|
||||||
|
#[serde(rename_all = "camelCase")]
|
||||||
|
pub struct PingRequest {
|
||||||
|
pub value: Option<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Default, Deserialize)]
|
||||||
|
#[serde(rename_all = "camelCase")]
|
||||||
|
pub struct PingResponse {
|
||||||
|
pub value: Option<String>,
|
||||||
|
}
|
Loading…
Reference in new issue