├── example ├── appGo │ └── .keep ├── appiOS │ ├── .keep │ ├── iosApp │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 100.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120.png │ │ │ │ ├── 144.png │ │ │ │ ├── 152.png │ │ │ │ ├── 167.png │ │ │ │ ├── 180.png │ │ │ │ ├── 20.png │ │ │ │ ├── 29.png │ │ │ │ ├── 40.png │ │ │ │ ├── 50.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 72.png │ │ │ │ ├── 76.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ ├── 1024.png │ │ │ │ └── Contents.json │ │ ├── AppDelegate.swift │ │ ├── ViewController.swift │ │ ├── Info.plist │ │ └── Base.lproj │ │ │ ├── Main.storyboard │ │ │ └── LaunchScreen.storyboard │ └── iosApp.xcodeproj │ │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── project.pbxproj ├── appAndroid │ ├── libGo │ │ ├── libs │ │ │ └── .keep │ │ ├── src │ │ │ └── main │ │ │ │ └── AndroidManifest.xml │ │ └── build.gradle │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ └── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── mycompany │ │ │ │ │ └── myapplication │ │ │ │ │ └── MainActivity.java │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── mycompany │ │ │ │ │ └── myapplication │ │ │ │ │ └── ExampleUnitTest.java │ │ │ └── androidTest │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── mycompany │ │ │ │ └── myapplication │ │ │ │ └── ExampleInstrumentedTest.java │ │ ├── proguard-rules.pro │ │ └── build.gradle │ ├── settings.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── gradlew.bat │ └── gradlew ├── libGo │ └── mycompany │ │ └── myproject │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── pkga │ │ └── stuff.go │ │ └── pkgb │ │ └── ugly.go ├── goupw └── goup.yaml ├── renovate.json ├── .travis.yml ├── go.mod ├── .gitignore ├── versionfile.go ├── go.sum ├── cmd.go ├── magic.go ├── LICENSE ├── zip.go ├── tar.go ├── resources.go ├── logger.go ├── args.go ├── path_test.go ├── goupyaml.go ├── artifactcache.go ├── resources.xml ├── path.go ├── vendormodule.go ├── helper.go ├── README.md └── goup.go /example/appGo/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/appiOS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/appAndroid/libGo/libs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/appAndroid/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/appAndroid/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ":libGo" 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/worldiety/goup 3 | go: 4 | - 1.17.x 5 | - tip 6 | 7 | script: 8 | - go test -race -v -------------------------------------------------------------------------------- /example/libGo/mycompany/myproject/go.mod: -------------------------------------------------------------------------------- 1 | module mycompany/myproject 2 | 3 | require github.com/worldiety/std v0.0.0-20190505122457-d3def1386692 4 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/worldiety/goup 2 | 3 | go 1.12 4 | 5 | require ( 6 | github.com/gofrs/flock v0.7.1 7 | gopkg.in/yaml.v2 v2.2.2 8 | ) 9 | -------------------------------------------------------------------------------- /example/appAndroid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/libGo/mycompany/myproject/go.sum: -------------------------------------------------------------------------------- 1 | github.com/worldiety/std v0.0.0-20190505122457-d3def1386692/go.mod h1:T6Z5yAV0QksJj9h7J2+VGjC228h05pyMcaYDV6iOSOc= 2 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appiOS/iosApp/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/appAndroid/libGo/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldiety/goup/HEAD/example/appAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /example/libGo/mycompany/myproject/main.go: -------------------------------------------------------------------------------- 1 | package myproject 2 | 3 | // AnExportedProjectLevelFunc returns a hello message 4 | func AnExportedProjectLevelFunc() string { 5 | return "hello from myproject" 6 | } 7 | -------------------------------------------------------------------------------- /example/appiOS/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /example/appAndroid/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /example/appAndroid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat May 04 13:48:49 CEST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | .idea 14 | gomobilebuilder 15 | example/.goup 16 | fatLib-sources.jar 17 | fatLib.aar 18 | builds 19 | example/appAndroid/libGo/build 20 | -------------------------------------------------------------------------------- /example/libGo/mycompany/myproject/pkga/stuff.go: -------------------------------------------------------------------------------- 1 | package pkga 2 | 3 | // A HelloCallback demonstrates perhaps the coolest gomobile feature 4 | type HelloCallback interface { 5 | // YourName returns a string to say hello to 6 | YourName() string 7 | } 8 | 9 | // NiceCallback takes a callback and invokes it 10 | func NiceCallback(cb HelloCallback) string { 11 | return "hello world at " + cb.YourName() 12 | } 13 | -------------------------------------------------------------------------------- /versionfile.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "io/ioutil" 5 | "os" 6 | ) 7 | 8 | // ReadVersion tries to read the entire file as a string 9 | func ReadVersion(fname string) string { 10 | str, _ := ioutil.ReadFile(fname) 11 | return string(str) 12 | } 13 | 14 | // WriteVersion overwrites the denoted file with the version string 15 | func WriteVersion(fname string, version string) { 16 | _ = ioutil.WriteFile(fname, []byte(version), os.ModePerm) 17 | } 18 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | github.com/gofrs/flock v0.7.1 h1:DP+LD/t0njgoPBvT5MJLeliUIVQR03hiKR6vezdwHlc= 2 | github.com/gofrs/flock v0.7.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= 3 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= 4 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 5 | gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= 6 | gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 7 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/test/java/com/mycompany/myapplication/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.mycompany.myapplication; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /example/appiOS/iosApp/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // iosApp 4 | // 5 | // Created by Christian Maier on 08.05.19. 6 | // Copyright © 2019 Worldiety. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | var window: UIWindow? 14 | 15 | func application( 16 | _ application: UIApplication, 17 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 18 | ) -> Bool { 19 | // Override point for customization after application launch. 20 | return true 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /example/appAndroid/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | google() 6 | jcenter() 7 | 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.4.0' 11 | 12 | // NOTE: Do not place your application dependencies here; they belong 13 | // in the individual module build.gradle files 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /example/appAndroid/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | 15 | 16 | -------------------------------------------------------------------------------- /example/appAndroid/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |