diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-05 15:08:06 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-05 15:08:06 +0200 |
| commit | f08f7354a85effcba1f5ecf15da244bddb5c03a3 (patch) | |
| tree | 0b3369b90a8752ac5b700d4d85f602855c0f7829 /Software | |
| parent | 4b4e1154f0f041bcfea4fa6b922c0c5c2274983c (diff) | |
| download | Tango-f08f7354a85effcba1f5ecf15da244bddb5c03a3.tar.gz Tango-f08f7354a85effcba1f5ecf15da244bddb5c03a3.zip | |
Added some infrastructure android/java projects.
Diffstat (limited to 'Software')
43 files changed, 431 insertions, 1 deletions
diff --git a/Software/Android-Studio/Tango.Core/.gitignore b/Software/Android-Studio/Tango.Core/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/Software/Android-Studio/Tango.Core/.gitignore @@ -0,0 +1 @@ +/build diff --git a/Software/Android-Studio/Tango.Core/build.gradle b/Software/Android-Studio/Tango.Core/build.gradle new file mode 100644 index 000000000..dd45e60cd --- /dev/null +++ b/Software/Android-Studio/Tango.Core/build.gradle @@ -0,0 +1,8 @@ +apply plugin: 'java-library' + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) +} + +sourceCompatibility = "1.7" +targetCompatibility = "1.7" diff --git a/Software/Android-Studio/Tango.Core/src/main/java/com/twine/tango/core/myClass.java b/Software/Android-Studio/Tango.Core/src/main/java/com/twine/tango/core/myClass.java new file mode 100644 index 000000000..a109ef9fe --- /dev/null +++ b/Software/Android-Studio/Tango.Core/src/main/java/com/twine/tango/core/myClass.java @@ -0,0 +1,4 @@ +package com.twine.tango.core; + +public class myClass { +} diff --git a/Software/Android-Studio/Tango.DAL/.gitignore b/Software/Android-Studio/Tango.DAL/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/Software/Android-Studio/Tango.DAL/.gitignore @@ -0,0 +1 @@ +/build diff --git a/Software/Android-Studio/Tango.DAL/build.gradle b/Software/Android-Studio/Tango.DAL/build.gradle new file mode 100644 index 000000000..dd45e60cd --- /dev/null +++ b/Software/Android-Studio/Tango.DAL/build.gradle @@ -0,0 +1,8 @@ +apply plugin: 'java-library' + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) +} + +sourceCompatibility = "1.7" +targetCompatibility = "1.7" diff --git a/Software/Android-Studio/Tango.DAL/src/main/java/com/twine/tango/dal/myClass.java b/Software/Android-Studio/Tango.DAL/src/main/java/com/twine/tango/dal/myClass.java new file mode 100644 index 000000000..1e28b85bb --- /dev/null +++ b/Software/Android-Studio/Tango.DAL/src/main/java/com/twine/tango/dal/myClass.java @@ -0,0 +1,4 @@ +package com.twine.tango.dal; + +public class myClass { +} diff --git a/Software/Android-Studio/Tango.SharedUI/.gitignore b/Software/Android-Studio/Tango.SharedUI/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/.gitignore @@ -0,0 +1 @@ +/build diff --git a/Software/Android-Studio/Tango.SharedUI/build.gradle b/Software/Android-Studio/Tango.SharedUI/build.gradle new file mode 100644 index 000000000..36a8dfafb --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/build.gradle @@ -0,0 +1,32 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion 26 + buildToolsVersion "26.0.1" + + + defaultConfig { + minSdkVersion 22 + targetSdkVersion 26 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + + implementation 'com.android.support:appcompat-v7:26.1.0' + testImplementation 'junit:junit:4.12' + androidTestImplementation 'com.android.support.test:runner:1.0.1' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' +} diff --git a/Software/Android-Studio/Tango.SharedUI/proguard-rules.pro b/Software/Android-Studio/Tango.SharedUI/proguard-rules.pro new file mode 100644 index 000000000..a0eef131a --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/proguard-rules.pro @@ -0,0 +1,25 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\Users\Roy\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# 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 diff --git a/Software/Android-Studio/Tango.SharedUI/src/androidTest/java/com/twine/tango/sharedui/ExampleInstrumentedTest.java b/Software/Android-Studio/Tango.SharedUI/src/androidTest/java/com/twine/tango/sharedui/ExampleInstrumentedTest.java new file mode 100644 index 000000000..5e8c901eb --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/src/androidTest/java/com/twine/tango/sharedui/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.twine.tango.sharedui; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("com.twine.tango.sharedui.test", appContext.getPackageName()); + } +} diff --git a/Software/Android-Studio/Tango.SharedUI/src/main/AndroidManifest.xml b/Software/Android-Studio/Tango.SharedUI/src/main/AndroidManifest.xml new file mode 100644 index 000000000..36d543b36 --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/src/main/AndroidManifest.xml @@ -0,0 +1,2 @@ +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.twine.tango.sharedui" /> diff --git a/Software/Android-Studio/Tango.SharedUI/src/main/res/values/strings.xml b/Software/Android-Studio/Tango.SharedUI/src/main/res/values/strings.xml new file mode 100644 index 000000000..824fc72c7 --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ +<resources> + <string name="app_name">Tango.SharedUI</string> +</resources> diff --git a/Software/Android-Studio/Tango.SharedUI/src/test/java/com/twine/tango/sharedui/ExampleUnitTest.java b/Software/Android-Studio/Tango.SharedUI/src/test/java/com/twine/tango/sharedui/ExampleUnitTest.java new file mode 100644 index 000000000..0ad67a99f --- /dev/null +++ b/Software/Android-Studio/Tango.SharedUI/src/test/java/com/twine/tango/sharedui/ExampleUnitTest.java @@ -0,0 +1,17 @@ +package com.twine.tango.sharedui; + +import org.junit.Test; + +import static org.junit.Assert.*; + +/** + * Example local unit test, which will execute on the development machine (host). + * + * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> + */ +public class ExampleUnitTest { + @Test + public void addition_isCorrect() throws Exception { + assertEquals(4, 2 + 2); + } +}
\ No newline at end of file diff --git a/Software/Android-Studio/Tango.Stubs.UI/.gitignore b/Software/Android-Studio/Tango.Stubs.UI/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/.gitignore @@ -0,0 +1 @@ +/build diff --git a/Software/Android-Studio/Tango.Stubs.UI/build.gradle b/Software/Android-Studio/Tango.Stubs.UI/build.gradle new file mode 100644 index 000000000..120c5f4be --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/build.gradle @@ -0,0 +1,34 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 26 + buildToolsVersion "26.0.1" + + + defaultConfig { + applicationId "com.twine.tango.stubs.ui" + minSdkVersion 22 + targetSdkVersion 26 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + + implementation 'com.android.support:appcompat-v7:26.1.0' + implementation 'com.android.support.constraint:constraint-layout:1.0.2' + testImplementation 'junit:junit:4.12' + androidTestImplementation 'com.android.support.test:runner:1.0.1' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' +} diff --git a/Software/Android-Studio/Tango.Stubs.UI/proguard-rules.pro b/Software/Android-Studio/Tango.Stubs.UI/proguard-rules.pro new file mode 100644 index 000000000..a0eef131a --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/proguard-rules.pro @@ -0,0 +1,25 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\Users\Roy\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# 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 diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/androidTest/java/com/twine/tango/stubs/ui/ExampleInstrumentedTest.java b/Software/Android-Studio/Tango.Stubs.UI/src/androidTest/java/com/twine/tango/stubs/ui/ExampleInstrumentedTest.java new file mode 100644 index 000000000..96fd8593f --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/androidTest/java/com/twine/tango/stubs/ui/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.twine.tango.stubs.ui; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("com.twine.tango.stubs.ui", appContext.getPackageName()); + } +} diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml new file mode 100644 index 000000000..1a0df6f2b --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.twine.tango.stubs.ui"> + + <application + android:allowBackup="true" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:theme="@style/AppTheme"> + <activity android:name=".MainActivity"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest>
\ No newline at end of file diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/java/com/twine/tango/stubs/ui/MainActivity.java b/Software/Android-Studio/Tango.Stubs.UI/src/main/java/com/twine/tango/stubs/ui/MainActivity.java new file mode 100644 index 000000000..b611a6e11 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/java/com/twine/tango/stubs/ui/MainActivity.java @@ -0,0 +1,13 @@ +package com.twine.tango.stubs.ui; + +import android.support.v7.app.AppCompatActivity; +import android.os.Bundle; + +public class MainActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + } +} diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/drawable/ic_launcher_background.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..1cd2a3665 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="utf-8"?> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportHeight="108.0" + android:viewportWidth="108.0"> + <path + android:fillColor="#26A69A" + android:pathData="M0,0h108v108h-108z" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M19,0L19,108" + android:strokeColor="#33FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M9,0L9,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M39,0L39,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M29,0L29,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M59,0L59,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M49,0L49,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M79,0L79,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M69,0L69,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M89,0L89,108" + android:strokeColor="#33FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M99,0L99,108" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,89L108,89" + android:strokeColor="#33FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,99L108,99" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,69L108,69" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,79L108,79" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,49L108,49" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,59L108,59" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,29L108,29" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,39L108,39" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,19L108,19" + android:strokeColor="#33FFFFFF" + android:strokeWidth="0.8" /> + <path + android:fillColor="#00000000" + android:pathData="M0,9L108,9" + android:strokeColor="#66FFFFFF" + android:strokeWidth="0.8" /> +</vector> + diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/layout/activity_main.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..c3cd25d4d --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/layout/activity_main.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context="com.twine.tango.stubs.ui.MainActivity"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Hello World!" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + +</android.support.constraint.ConstraintLayout> diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..00f9eaaf3 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@drawable/ic_launcher_background" /> + <foreground android:drawable="@mipmap/ic_launcher_foreground" /> +</adaptive-icon>
\ No newline at end of file diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..00f9eaaf3 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@drawable/ic_launcher_background" /> + <foreground android:drawable="@mipmap/ic_launcher_foreground" /> +</adaptive-icon>
\ No newline at end of file diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..550730310 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher_foreground.png Binary files differnew file mode 100644 index 000000000..4e526c95b --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher_foreground.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher_round.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 000000000..8fab6a3a5 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-hdpi/ic_launcher_round.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..6bc7fcd6f --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher_foreground.png Binary files differnew file mode 100644 index 000000000..2c38c7190 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher_foreground.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher_round.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 000000000..1eecc0e7d --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-mdpi/ic_launcher_round.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..ec87dcebe --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png Binary files differnew file mode 100644 index 000000000..072467eaa --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 000000000..05ca079ca --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xhdpi/ic_launcher_round.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..6f67f21ba --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png Binary files differnew file mode 100644 index 000000000..78a6b7a34 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 000000000..8bac0f274 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxhdpi/ic_launcher_round.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..0327e13fa --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png Binary files differnew file mode 100644 index 000000000..68ebe33fe --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 000000000..bacd3e758 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/colors.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/colors.xml new file mode 100644 index 000000000..3ab3e9cbc --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="colorPrimary">#3F51B5</color> + <color name="colorPrimaryDark">#303F9F</color> + <color name="colorAccent">#FF4081</color> +</resources> diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/strings.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/strings.xml new file mode 100644 index 000000000..6917728ef --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ +<resources> + <string name="app_name">Tango.Stubs.UI</string> +</resources> diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/styles.xml b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/styles.xml new file mode 100644 index 000000000..5885930df --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/main/res/values/styles.xml @@ -0,0 +1,11 @@ +<resources> + + <!-- Base application theme. --> + <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> + <!-- Customize your theme here. --> + <item name="colorPrimary">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> + <item name="colorAccent">@color/colorAccent</item> + </style> + +</resources> diff --git a/Software/Android-Studio/Tango.Stubs.UI/src/test/java/com/twine/tango/stubs/ui/ExampleUnitTest.java b/Software/Android-Studio/Tango.Stubs.UI/src/test/java/com/twine/tango/stubs/ui/ExampleUnitTest.java new file mode 100644 index 000000000..e57a25835 --- /dev/null +++ b/Software/Android-Studio/Tango.Stubs.UI/src/test/java/com/twine/tango/stubs/ui/ExampleUnitTest.java @@ -0,0 +1,17 @@ +package com.twine.tango.stubs.ui; + +import org.junit.Test; + +import static org.junit.Assert.*; + +/** + * Example local unit test, which will execute on the development machine (host). + * + * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> + */ +public class ExampleUnitTest { + @Test + public void addition_isCorrect() throws Exception { + assertEquals(4, 2 + 2); + } +}
\ No newline at end of file diff --git a/Software/Android-Studio/settings.gradle b/Software/Android-Studio/settings.gradle index 2e7f8ec0e..5e745d3e5 100644 --- a/Software/Android-Studio/settings.gradle +++ b/Software/Android-Studio/settings.gradle @@ -1 +1 @@ -include ':app', ':Tango.PMR', ':Tango.BL' +include ':app', ':Tango.PMR', ':Tango.BL', ':Tango.Stubs.UI', ':Tango.Core', ':Tango.SharedUI', ':Tango.DAL' |
