diff --git a/.fleet/receipt.json b/.fleet/receipt.json new file mode 100644 index 0000000..be9173c --- /dev/null +++ b/.fleet/receipt.json @@ -0,0 +1,19 @@ +// Project generated by Kotlin Multiplatform Wizard +{ + "spec": { + "template_id": "kmt", + "targets": { + "android": { + "ui": [ + "compose" + ] + }, + "ios": { + "ui": [ + "compose" + ] + } + } + }, + "timestamp": "2024-05-06T14:52:23.694460602Z" +} \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..01502b1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..94b1c78 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +*.iml +.gradle +**/build/ +xcuserdata +!src/**/build/ +local.properties +.idea +.DS_Store +captures +.externalNativeBuild +.cxx +*.xcodeproj/* +!*.xcodeproj/project.pbxproj +!*.xcodeproj/xcshareddata/ +!*.xcodeproj/project.xcworkspace/ +!*.xcworkspace/contents.xcworkspacedata +**/xcshareddata/WorkspaceSettings.xcsettings +**/gradle.properties + diff --git a/README.md b/README.md new file mode 100644 index 0000000..edba20d --- /dev/null +++ b/README.md @@ -0,0 +1,55 @@ + + +

+ Profile +


+ +

+👻 Multiplatform Contacts is a straight forward library used to get Contacts in Android and iOS. +


+ + +### sample iOS +

+ +

+ +### sample Android +

+ +

+ +### On Android + +Add the following on your Manifest file: +```xml + +``` + +### Gradle + +You can add a dependency inside the `androidMain` or `commonMain` source set: +```gradle +commonMain.dependencies { + implementation("io.github.lilytreasure:multiplatformContacts:1.0.1") +} +``` +## Usage + + +```kotlin + var phoneNumber by remember { mutableStateOf("") } + val multiplatformContactsPicker = pickMultiplatformContacts(onResult = {number-> + phoneNumber = number + }) + + Column(Modifier.fillMaxWidth(), horizontalAlignment = Alignment.CenterHorizontally) { + Button(onClick = { + multiplatformContactsPicker.launch() + }) { + Text("Load contacts") + } + Text(text = phoneNumber) + } + +``` diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..82bf71d --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,10 @@ +plugins { + // this is necessary to avoid the plugins to be loaded multiple times + // in each subproject's classloader + id("root.publication") + alias(libs.plugins.androidApplication) apply false + alias(libs.plugins.androidLibrary) apply false + alias(libs.plugins.jetbrainsCompose) apply false + alias(libs.plugins.kotlinMultiplatform) apply false + alias(libs.plugins.jetbrainsKotlinAndroid) apply false +} \ No newline at end of file diff --git a/convention-plugins/build.gradle.kts b/convention-plugins/build.gradle.kts new file mode 100644 index 0000000..2eeba03 --- /dev/null +++ b/convention-plugins/build.gradle.kts @@ -0,0 +1,10 @@ + + +plugins { + `kotlin-dsl` +} + +dependencies { + implementation(libs.nexus.publish) +} + diff --git a/convention-plugins/settings.gradle.kts b/convention-plugins/settings.gradle.kts new file mode 100644 index 0000000..cf9109d --- /dev/null +++ b/convention-plugins/settings.gradle.kts @@ -0,0 +1,22 @@ + +pluginManagement { + repositories { + google() + gradlePluginPortal() + mavenCentral() + } +} + +dependencyResolutionManagement { + repositories { + google() + gradlePluginPortal() + mavenCentral() + } + + versionCatalogs { + create("libs") { + from(files("../gradle/libs.versions.toml")) + } + } +} diff --git a/convention-plugins/src/main/kotlin/module.publication.gradle.kts b/convention-plugins/src/main/kotlin/module.publication.gradle.kts new file mode 100644 index 0000000..a8a8e46 --- /dev/null +++ b/convention-plugins/src/main/kotlin/module.publication.gradle.kts @@ -0,0 +1,69 @@ + +import org.gradle.api.publish.maven.MavenPublication +import org.gradle.api.tasks.bundling.Jar +import org.gradle.kotlin.dsl.`maven-publish` + + +plugins { + `maven-publish` + signing +} + +publishing { + // Configure all publications + publications.withType { + // Stub javadoc.jar artifact + artifact( + tasks.register("${name}JavadocJar", Jar::class) { + archiveClassifier.set("javadoc") + archiveAppendix.set(this@withType.name) + }, + ) + + // Provide artifacts information required by Maven Central + pom { + name.set("multiplatformContacts") + description.set( + "Kotlin Multiplatform library for Compose Multiplatform, " + + "designed for seamless integration of an contacts picker feature in iOS " + + "and Android applications.", + ) + url.set("https://github.com/Lilytreasure/MultiplatformContacts") + + licenses { + license { + name.set("Apache-2.0") + url.set("https://opensource.org/licenses/Apache-2.0") + } + } + developers { + developer { + id.set("dennis") + name.set("dennis") + email.set("lilyngure@gmail.com") + } + } + issueManagement { + system.set("Github") + url.set("https://github.com/Lilytreasure/MultiplatformContacts/issues") + } + scm { + connection.set("https://github.com/Lilytreasure/MultiplatformContacts.git") + url.set("https://github.com/Lilytreasure/MultiplatformContacts") + } + } + } +} + +signing { + if (project.hasProperty("signing.gnupg.keyName")) { + useGpgCmd() + sign(publishing.publications) + } + +} + +tasks.withType().configureEach { + val signingTasks = tasks.withType() + mustRunAfter(signingTasks) +} diff --git a/convention-plugins/src/main/kotlin/root.publication.gradle.kts b/convention-plugins/src/main/kotlin/root.publication.gradle.kts new file mode 100644 index 0000000..0b2428e --- /dev/null +++ b/convention-plugins/src/main/kotlin/root.publication.gradle.kts @@ -0,0 +1,25 @@ + + + +plugins { + id("io.github.gradle-nexus.publish-plugin") +} + +allprojects { + group = "io.github.lilytreasure" + version = "0.0.2" +} + +nexusPublishing { + // Configure maven central repository + // https://github.com/gradle-nexus/publish-plugin#publishing-to-maven-central-via-sonatype-ossrh + repositories { + sonatype { + nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) + snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) + } + } +} + + + diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..25baeb3 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,47 @@ +[versions] +agp = "8.2.0" +android-compileSdk = "34" +android-minSdk = "24" +android-targetSdk = "34" +androidx-activityCompose = "1.9.0" +androidx-appcompat = "1.6.1" +androidx-constraintlayout = "2.1.4" +androidx-core-ktx = "1.13.0" +androidx-espresso-core = "3.5.1" +androidx-material = "1.11.0" +androidx-test-junit = "1.1.5" +compose = "1.6.6" +compose-plugin = "1.6.2" +junit = "4.13.2" +kotlin = "1.9.23" +kotlinVersion = "1.9.21" +coreKtx = "1.13.1" +compose-activity = "1.9.0" +nexus-publish = "2.0.0" + +[libraries] +kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" } +kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" } +junit = { group = "junit", name = "junit", version.ref = "junit" } +androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "androidx-core-ktx" } +androidx-test-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-junit" } +androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "androidx-espresso-core" } +androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "androidx-appcompat" } +androidx-material = { group = "com.google.android.material", name = "material", version.ref = "androidx-material" } +androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "androidx-constraintlayout" } +androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" } +compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" } +compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" } +core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } +nexus-publish = { module = "io.github.gradle-nexus.publish-plugin:io.github.gradle-nexus.publish-plugin.gradle.plugin", version.ref = "nexus-publish" } + +#Activity +compose-activity = { module = "androidx.activity:activity-compose", version.ref = "compose-activity" } + + +[plugins] +androidApplication = { id = "com.android.application", version.ref = "agp" } +androidLibrary = { id = "com.android.library", version.ref = "agp" } +jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" } +kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } +jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlinVersion" } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..7f93135 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..b82aa23 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..1aa94a4 --- /dev/null +++ b/gradlew @@ -0,0 +1,249 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# 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 +# +# https://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. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..6689b85 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/multiplatformContact/build.gradle.kts b/multiplatformContact/build.gradle.kts new file mode 100644 index 0000000..87bda61 --- /dev/null +++ b/multiplatformContact/build.gradle.kts @@ -0,0 +1,105 @@ +import com.vanniktech.maven.publish.SonatypeHost + +plugins { + alias(libs.plugins.kotlinMultiplatform) + alias(libs.plugins.androidLibrary) + alias(libs.plugins.jetbrainsCompose) + id("com.vanniktech.maven.publish") version "0.28.0" +} + +kotlin { + androidTarget { + compilations.all { + kotlinOptions { + jvmTarget = "17" + } + } + publishLibraryVariants("release", "debug") + } + + iosX64() + iosArm64() + iosSimulatorArm64() + + sourceSets { + + androidMain.dependencies { + implementation(libs.compose.ui.tooling.preview) + api(libs.androidx.activity.compose) + api(libs.androidx.appcompat) + //phone + implementation("com.googlecode.libphonenumber:libphonenumber:8.2.0") + + } + commonMain.dependencies { + implementation(compose.runtime) + implementation(compose.foundation) + implementation(compose.material) + implementation(compose.ui) + implementation(compose.components.resources) + implementation(compose.components.uiToolingPreview) + } + } +} + +android { + namespace = "io.github.lilytreasure" + compileSdk = libs.versions.android.compileSdk.get().toInt() + defaultConfig { + minSdk = libs.versions.android.minSdk.get().toInt() + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } +} + +mavenPublishing { + coordinates( + groupId = "io.github.lilytreasure", + artifactId = "multiplatformContacts", + version = "1.0.1" + ) + + // Configure POM metadata for the published artifact + pom { + name.set("MultiplatformContacts") + description.set( + "Kotlin Multiplatform library for Compose Multiplatform, " + + "designed for seamless integration of an contacts picker feature in iOS " + + "and Android applications.", + ) + inceptionYear.set("2024") + url.set("hhttps://github.com/Lilytreasure/MultiplatformContacts") + + licenses { + license { + name.set("MIT") + url.set("https://opensource.org/licenses/MIT") + } + } + + // Specify developers information + developers { + developer { + id.set("dennis") + name.set("dennis") + email.set("lilyngure@gmail.com") + } + } + + // Specify SCM information + scm { + connection.set("https://github.com/Lilytreasure/MultiplatformContacts.git") + url.set("https://github.com/Lilytreasure/MultiplatformContacts") + } + } + + // Configure publishing to Maven Central + publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) + + // Enable GPG signing for all publications + signAllPublications() +} + + diff --git a/multiplatformContact/src/androidMain/kotlin/Time.kt b/multiplatformContact/src/androidMain/kotlin/Time.kt new file mode 100644 index 0000000..4734d13 --- /dev/null +++ b/multiplatformContact/src/androidMain/kotlin/Time.kt @@ -0,0 +1,33 @@ +import java.util.Timer +import kotlin.concurrent.schedule + +actual class TimerManager { + private var timer: Timer? = null + + actual fun scheduleTimer( + visibilityDuration: Long, + onTimerTriggered: () -> Unit + ) { + if (timer != null) { + // Timer is already in use, cancel it first + cancelTimer() + } + + // Create a new Timer instance + timer = Timer("Message Bar Animation Timer", true) + timer?.schedule(visibilityDuration) { + onTimerTriggered() + // Cancel the timer after triggering the action + cancelTimer() + } + } + + actual fun cancelTimer() { + timer?.cancel() + timer?.purge() + timer = null + } + + + +} \ No newline at end of file diff --git a/multiplatformContact/src/androidMain/kotlin/multiContacts/Launcher.kt b/multiplatformContact/src/androidMain/kotlin/multiContacts/Launcher.kt new file mode 100644 index 0000000..1ad51e2 --- /dev/null +++ b/multiplatformContact/src/androidMain/kotlin/multiContacts/Launcher.kt @@ -0,0 +1,9 @@ +package multiContacts + +actual class Launcher actual constructor( + private val onLaunch: () -> Unit, +) { + actual fun launch() { + onLaunch() + } +} \ No newline at end of file diff --git a/multiplatformContact/src/androidMain/kotlin/multiContacts/Picker.kt b/multiplatformContact/src/androidMain/kotlin/multiContacts/Picker.kt new file mode 100644 index 0000000..31c4c32 --- /dev/null +++ b/multiplatformContact/src/androidMain/kotlin/multiContacts/Picker.kt @@ -0,0 +1,85 @@ +package multiContacts + +import android.Manifest +import android.content.Context +import android.database.Cursor +import android.net.Uri +import android.os.Build +import android.provider.ContactsContract +import androidx.activity.compose.rememberLauncherForActivityResult +import androidx.activity.result.contract.ActivityResultContracts +import androidx.activity.result.launch +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.platform.LocalContext + +/** + * @param Launcher used to invoke the contacts picker + * @param getPhoneNumberFromUriData is used to extract phone number from the uri + */ + + +@Composable +actual fun pickMultiplatformContacts(onResult: (String) -> Unit): Launcher { + val context = LocalContext.current + val launcherCustom: Launcher? + val resultContacts = remember { mutableStateOf(null) } + var phoneNumber by remember { mutableStateOf(null) } + val resultContactsValue = remember { mutableStateOf(false) } + val launcherContacts = rememberLauncherForActivityResult(ActivityResultContracts.PickContact()) { + resultContacts.value = it + } + val launcherPermission = rememberLauncherForActivityResult(ActivityResultContracts.RequestPermission()) { isGranted: Boolean -> + resultContactsValue.value = isGranted + } + LaunchedEffect(resultContacts.value) { + resultContactsValue.value.let {uri-> + println("Result changed;;;;;;;;;;"+ uri) + + } + resultContacts.value?.let { uri -> + phoneNumber = getPhoneNumberFromUriData(context, uri) + } + } + phoneNumber?.let { + onResult(it) + } + launcherCustom = remember { + Launcher(onLaunch = { + launcherPermission.launch(Manifest.permission.READ_CONTACTS) + if(resultContactsValue.value){ + launcherContacts.launch() + }else{ + launcherPermission.launch(Manifest.permission.READ_CONTACTS) + } + }) + } + return launcherCustom +} + +fun getPhoneNumberFromUriData(context: Context, uri: Uri): String? { + val contentResolver = context.contentResolver + val cursor: Cursor? = + contentResolver.query( + ContactsContract.CommonDataKinds.Phone.CONTENT_URI, + arrayOf(ContactsContract.CommonDataKinds.Phone.NUMBER), + "${ContactsContract.CommonDataKinds.Phone.CONTACT_ID} = ?", + arrayOf(uri.lastPathSegment), + null + ) + + var phoneNumber: String? = null + cursor?.use { + if (it.moveToFirst()) { + phoneNumber = it.getString( + it.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER) + ) + } + } + return phoneNumber +} + diff --git a/multiplatformContact/src/commonMain/kotlin/Time.kt b/multiplatformContact/src/commonMain/kotlin/Time.kt new file mode 100644 index 0000000..d457422 --- /dev/null +++ b/multiplatformContact/src/commonMain/kotlin/Time.kt @@ -0,0 +1,7 @@ +expect class TimerManager() { + fun scheduleTimer( + visibilityDuration: Long, + onTimerTriggered: () -> Unit + ) + fun cancelTimer() +} \ No newline at end of file diff --git a/multiplatformContact/src/commonMain/kotlin/multiContacts/Launcher.kt b/multiplatformContact/src/commonMain/kotlin/multiContacts/Launcher.kt new file mode 100644 index 0000000..34a3163 --- /dev/null +++ b/multiplatformContact/src/commonMain/kotlin/multiContacts/Launcher.kt @@ -0,0 +1,7 @@ +package multiContacts + +expect class Launcher( + onLaunch: () -> Unit, +) { + fun launch() +} \ No newline at end of file diff --git a/multiplatformContact/src/commonMain/kotlin/multiContacts/MultiContacts.kt b/multiplatformContact/src/commonMain/kotlin/multiContacts/MultiContacts.kt new file mode 100644 index 0000000..23dd1c1 --- /dev/null +++ b/multiplatformContact/src/commonMain/kotlin/multiContacts/MultiContacts.kt @@ -0,0 +1,38 @@ +package multiContacts + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.padding +import androidx.compose.material.Button +import androidx.compose.material.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp + +@Composable +fun MultiContacts( + modifier: Modifier = Modifier, +) { + var number by remember { mutableStateOf("") } + val multiplatformContactsPicker = pickMultiplatformContacts(onResult = { + number = it + }) + Column(modifier = Modifier.fillMaxSize()) { + Text(text = number) + Button(modifier = Modifier.padding(top = 16.dp), + onClick = { + multiplatformContactsPicker.launch() + }) { + Text("Run") + } + } +} + + + + + diff --git a/multiplatformContact/src/commonMain/kotlin/multiContacts/Picker.kt b/multiplatformContact/src/commonMain/kotlin/multiContacts/Picker.kt new file mode 100644 index 0000000..1f36953 --- /dev/null +++ b/multiplatformContact/src/commonMain/kotlin/multiContacts/Picker.kt @@ -0,0 +1,6 @@ +package multiContacts + +import androidx.compose.runtime.Composable + +@Composable +expect fun pickMultiplatformContacts(onResult: (String) -> Unit): Launcher \ No newline at end of file diff --git a/multiplatformContact/src/iosMain/kotlin/Time.kt b/multiplatformContact/src/iosMain/kotlin/Time.kt new file mode 100644 index 0000000..f730cf7 --- /dev/null +++ b/multiplatformContact/src/iosMain/kotlin/Time.kt @@ -0,0 +1,21 @@ +import platform.Foundation.NSTimer + +actual class TimerManager { + private var timer: NSTimer? = null + + actual fun scheduleTimer( + visibilityDuration: Long, + onTimerTriggered: () -> Unit + ) { + timer = NSTimer.scheduledTimerWithTimeInterval( + visibilityDuration.toDouble() / 1000, + repeats = false, + block = { onTimerTriggered() } + ) + } + + actual fun cancelTimer() { + timer?.invalidate() + timer = null + } +} \ No newline at end of file diff --git a/multiplatformContact/src/iosMain/kotlin/multiContacts/Launcher.kt b/multiplatformContact/src/iosMain/kotlin/multiContacts/Launcher.kt new file mode 100644 index 0000000..1ad51e2 --- /dev/null +++ b/multiplatformContact/src/iosMain/kotlin/multiContacts/Launcher.kt @@ -0,0 +1,9 @@ +package multiContacts + +actual class Launcher actual constructor( + private val onLaunch: () -> Unit, +) { + actual fun launch() { + onLaunch() + } +} \ No newline at end of file diff --git a/multiplatformContact/src/iosMain/kotlin/multiContacts/Picker.kt b/multiplatformContact/src/iosMain/kotlin/multiContacts/Picker.kt new file mode 100644 index 0000000..3a9bb0c --- /dev/null +++ b/multiplatformContact/src/iosMain/kotlin/multiContacts/Picker.kt @@ -0,0 +1,49 @@ +package multiContacts + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import platform.Contacts.CNContact +import platform.ContactsUI.CNContactPickerDelegateProtocol +import platform.ContactsUI.CNContactPickerViewController +import platform.UIKit.UIApplication +import platform.darwin.NSObject + + + +/** + * @param Launcher used to invoke the contacts picker + * @param extractPhoneNumber is used to extract phone number, can be modified to extract phone number data of your choice + */ + +typealias ContactPickedCallback = (String) -> Unit + +@Composable +actual fun pickMultiplatformContacts(onResult: ContactPickedCallback): Launcher { + val launcherCustom = remember { + Launcher(onLaunch = { + val picker = CNContactPickerViewController() + picker.delegate = object : NSObject(), CNContactPickerDelegateProtocol { + override fun contactPicker(picker: CNContactPickerViewController, didSelectContact: CNContact) { + val phoneNumber = didSelectContact.phoneNumbers.firstOrNull()?.toString() + val phoneNumberExTracted = phoneNumber?.let { extractPhoneNumber(it) } + onResult(phoneNumberExTracted ?: "No Phone Number") + } + override fun contactPickerDidCancel(picker: CNContactPickerViewController) { + onResult("") + } + } + UIApplication.sharedApplication.keyWindow?.rootViewController?.presentViewController( + picker, + true, + null, + ) + }) + } + return launcherCustom +} +fun extractPhoneNumber(cnlabeledValue: String): String? { + val regex = Regex("stringValue=([^,]+)") + val matchResult = regex.find(cnlabeledValue) + return matchResult?.groupValues?.get(1) +} + diff --git a/sample/android/build.gradle.kts b/sample/android/build.gradle.kts new file mode 100644 index 0000000..cc59657 --- /dev/null +++ b/sample/android/build.gradle.kts @@ -0,0 +1,61 @@ +plugins { + alias(libs.plugins.androidApplication) + alias(libs.plugins.jetbrainsCompose) + alias(libs.plugins.jetbrainsKotlinAndroid) +} + +android { + namespace = "com.dennis.multicontacts.android.sample" + compileSdk = 34 + + defaultConfig { + applicationId = "com.dennis.multicontacts.android.sample" + minSdk = 24 + targetSdk = compileSdk + versionCode = 1 + versionName = "1.0.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + } + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + + buildFeatures { + compose = true + } + + composeOptions { + kotlinCompilerExtensionVersion = "1.5.11" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } + +} + +dependencies { + implementation(libs.androidx.core.ktx) + api(libs.androidx.activity.compose) + api(libs.androidx.appcompat) + implementation(compose.material3) + implementation(libs.core.ktx) + implementation(project(":sample:common")) + implementation(project(":multiplatformContact")) + +} \ No newline at end of file diff --git a/sample/android/proguard-rules.pro b/sample/android/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/sample/android/proguard-rules.pro @@ -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 \ No newline at end of file diff --git a/sample/android/src/main/AndroidManifest.xml b/sample/android/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a2496ed --- /dev/null +++ b/sample/android/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sample/android/src/main/java/com/dennis/multicontacts/MainActivity.kt b/sample/android/src/main/java/com/dennis/multicontacts/MainActivity.kt new file mode 100644 index 0000000..d7c1a85 --- /dev/null +++ b/sample/android/src/main/java/com/dennis/multicontacts/MainActivity.kt @@ -0,0 +1,22 @@ +package com.dennis.multicontacts + +import android.os.Bundle +import androidx.activity.compose.setContent +import androidx.appcompat.app.AppCompatActivity +import com.dennis.multicontacts.ui.theme.ComposeSignatureTheme +import multicontactSample.Sample + +class MainActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContent { + ComposeSignatureTheme(darkTheme = false) { + Sample() + } + } + } + + override fun onResume() { + super.onResume() + } +} diff --git a/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Color.kt b/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Color.kt new file mode 100644 index 0000000..4f268d4 --- /dev/null +++ b/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Color.kt @@ -0,0 +1,12 @@ + +package com.dennis.multicontacts.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple80 = Color(0xFFD0BCFF) +val PurpleGrey80 = Color(0xFFCCC2DC) +val Pink80 = Color(0xFFEFB8C8) + +val Purple40 = Color(0xFF6650a4) +val PurpleGrey40 = Color(0xFF625b71) +val Pink40 = Color(0xFF7D5260) diff --git a/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Theme.kt b/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Theme.kt new file mode 100644 index 0000000..34a28a7 --- /dev/null +++ b/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Theme.kt @@ -0,0 +1,57 @@ + +package com.dennis.multicontacts.ui.theme + +import android.os.Build +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.dynamicDarkColorScheme +import androidx.compose.material3.dynamicLightColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable +import androidx.compose.ui.platform.LocalContext + +private val DarkColorScheme = darkColorScheme( + primary = Purple80, + secondary = PurpleGrey80, + tertiary = Pink80 +) + +private val LightColorScheme = lightColorScheme( + primary = Purple40, + secondary = PurpleGrey40, + tertiary = Pink40 + + /* Other default colors to override + background = Color(0xFFFFFBFE), + surface = Color(0xFFFFFBFE), + onPrimary = Color.White, + onSecondary = Color.White, + onTertiary = Color.White, + onBackground = Color(0xFF1C1B1F), + onSurface = Color(0xFF1C1B1F), + */ +) + +@Composable +fun ComposeSignatureTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + // Dynamic color is available on Android 12+ + dynamicColor: Boolean = true, + content: @Composable () -> Unit +) { + val colorScheme = when { + dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> { + val context = LocalContext.current + if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context) + } + darkTheme -> DarkColorScheme + else -> LightColorScheme + } + + MaterialTheme( + colorScheme = colorScheme, + typography = Typography, + content = content + ) +} diff --git a/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Type.kt b/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Type.kt new file mode 100644 index 0000000..35e1f4e --- /dev/null +++ b/sample/android/src/main/java/com/dennis/multicontacts/ui/theme/Type.kt @@ -0,0 +1,35 @@ + +package com.dennis.multicontacts.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +// Set of Material typography styles to start with +val Typography = Typography( + bodyLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ) + /* Other default text styles to override + titleLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 22.sp, + lineHeight = 28.sp, + letterSpacing = 0.sp + ), + labelSmall = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) + */ +) diff --git a/sample/android/src/main/res/drawable-v24/ic_launcher_foreground.xml b/sample/android/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/sample/android/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/sample/android/src/main/res/drawable/ic_launcher_background.xml b/sample/android/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/sample/android/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sample/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/sample/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/sample/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/sample/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/sample/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/sample/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/sample/android/src/main/res/mipmap-anydpi-v33/ic_launcher.xml b/sample/android/src/main/res/mipmap-anydpi-v33/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/sample/android/src/main/res/mipmap-anydpi-v33/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/sample/android/src/main/res/mipmap-hdpi/ic_launcher.webp b/sample/android/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/sample/android/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/sample/android/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/sample/android/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/sample/android/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/sample/android/src/main/res/mipmap-mdpi/ic_launcher.webp b/sample/android/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/sample/android/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/sample/android/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/sample/android/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/sample/android/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/sample/android/src/main/res/mipmap-xhdpi/ic_launcher.webp b/sample/android/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/sample/android/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/sample/android/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/sample/android/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/sample/android/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/sample/android/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/sample/android/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/sample/android/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/sample/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/sample/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/sample/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/sample/android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/sample/android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/sample/android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/sample/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/sample/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/sample/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/sample/android/src/main/res/values/colors.xml b/sample/android/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/sample/android/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/sample/android/src/main/res/values/strings.xml b/sample/android/src/main/res/values/strings.xml new file mode 100644 index 0000000..a4ea876 --- /dev/null +++ b/sample/android/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Multicontacts + \ No newline at end of file diff --git a/sample/android/src/main/res/values/themes.xml b/sample/android/src/main/res/values/themes.xml new file mode 100644 index 0000000..052db9d --- /dev/null +++ b/sample/android/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +