From 1d971944533d51947703b3ab1d4ff7d79dd83558 Mon Sep 17 00:00:00 2001 From: Ebenezer Ackon Date: Thu, 3 May 2018 17:43:31 -0400 Subject: [PATCH] create sample project for 1.0.0 release --- README.md | 2 +- {app => sample-project}/.gitignore | 0 {app => sample-project}/build.gradle | 0 {app => sample-project}/proguard-rules.pro | 0 .../src/main/AndroidManifest.xml | 0 .../helloetherescan/HelloEtherscanApplication.kt | 0 .../jfyg/etherscan/helloetherescan/MainActivity.kt | 0 .../res/drawable-v24/ic_launcher_foreground.xml | 0 .../main/res/drawable/ic_launcher_background.xml | 0 .../src/main/res/layout/activity_main.xml | 0 .../src/main/res/layout/content_main.xml | 0 .../src/main/res/menu/menu_main.xml | 0 .../src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 0 .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 0 .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin .../src/main/res/mipmap-hdpi/ic_launcher_round.png | Bin .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin .../src/main/res/mipmap-mdpi/ic_launcher_round.png | Bin .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin .../src/main/res/mipmap-xhdpi/ic_launcher_round.png | Bin .../src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin .../main/res/mipmap-xxhdpi/ic_launcher_round.png | Bin .../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin .../main/res/mipmap-xxxhdpi/ic_launcher_round.png | Bin .../src/main/res/values/colors.xml | 0 .../src/main/res/values/dimens.xml | 0 .../src/main/res/values/strings.xml | 0 .../src/main/res/values/styles.xml | 0 settings.gradle | 2 +- 29 files changed, 2 insertions(+), 2 deletions(-) rename {app => sample-project}/.gitignore (100%) rename {app => sample-project}/build.gradle (100%) rename {app => sample-project}/proguard-rules.pro (100%) rename {app => sample-project}/src/main/AndroidManifest.xml (100%) rename {app => sample-project}/src/main/java/jfyg/etherscan/helloetherescan/HelloEtherscanApplication.kt (100%) rename {app => sample-project}/src/main/java/jfyg/etherscan/helloetherescan/MainActivity.kt (100%) rename {app => sample-project}/src/main/res/drawable-v24/ic_launcher_foreground.xml (100%) rename {app => sample-project}/src/main/res/drawable/ic_launcher_background.xml (100%) rename {app => sample-project}/src/main/res/layout/activity_main.xml (100%) rename {app => sample-project}/src/main/res/layout/content_main.xml (100%) rename {app => sample-project}/src/main/res/menu/menu_main.xml (100%) rename {app => sample-project}/src/main/res/mipmap-anydpi-v26/ic_launcher.xml (100%) rename {app => sample-project}/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml (100%) rename {app => sample-project}/src/main/res/mipmap-hdpi/ic_launcher.png (100%) rename {app => sample-project}/src/main/res/mipmap-hdpi/ic_launcher_round.png (100%) rename {app => sample-project}/src/main/res/mipmap-mdpi/ic_launcher.png (100%) rename {app => sample-project}/src/main/res/mipmap-mdpi/ic_launcher_round.png (100%) rename {app => sample-project}/src/main/res/mipmap-xhdpi/ic_launcher.png (100%) rename {app => sample-project}/src/main/res/mipmap-xhdpi/ic_launcher_round.png (100%) rename {app => sample-project}/src/main/res/mipmap-xxhdpi/ic_launcher.png (100%) rename {app => sample-project}/src/main/res/mipmap-xxhdpi/ic_launcher_round.png (100%) rename {app => sample-project}/src/main/res/mipmap-xxxhdpi/ic_launcher.png (100%) rename {app => sample-project}/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png (100%) rename {app => sample-project}/src/main/res/values/colors.xml (100%) rename {app => sample-project}/src/main/res/values/dimens.xml (100%) rename {app => sample-project}/src/main/res/values/strings.xml (100%) rename {app => sample-project}/src/main/res/values/styles.xml (100%) diff --git a/README.md b/README.md index 0b5c06b..e2cb89a 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Create an Instance of one of the reactive Singles and access values by specifyin Currently Available: ``[accounts, contracts, transactions, blocks, stat]`` -Coming Soon: ``eventLogs, geth, websockets, tokens`` +Coming Soon: ``[eventLogs, geth, websockets, tokens]`` ``` val stat = Stat() diff --git a/app/.gitignore b/sample-project/.gitignore similarity index 100% rename from app/.gitignore rename to sample-project/.gitignore diff --git a/app/build.gradle b/sample-project/build.gradle similarity index 100% rename from app/build.gradle rename to sample-project/build.gradle diff --git a/app/proguard-rules.pro b/sample-project/proguard-rules.pro similarity index 100% rename from app/proguard-rules.pro rename to sample-project/proguard-rules.pro diff --git a/app/src/main/AndroidManifest.xml b/sample-project/src/main/AndroidManifest.xml similarity index 100% rename from app/src/main/AndroidManifest.xml rename to sample-project/src/main/AndroidManifest.xml diff --git a/app/src/main/java/jfyg/etherscan/helloetherescan/HelloEtherscanApplication.kt b/sample-project/src/main/java/jfyg/etherscan/helloetherescan/HelloEtherscanApplication.kt similarity index 100% rename from app/src/main/java/jfyg/etherscan/helloetherescan/HelloEtherscanApplication.kt rename to sample-project/src/main/java/jfyg/etherscan/helloetherescan/HelloEtherscanApplication.kt diff --git a/app/src/main/java/jfyg/etherscan/helloetherescan/MainActivity.kt b/sample-project/src/main/java/jfyg/etherscan/helloetherescan/MainActivity.kt similarity index 100% rename from app/src/main/java/jfyg/etherscan/helloetherescan/MainActivity.kt rename to sample-project/src/main/java/jfyg/etherscan/helloetherescan/MainActivity.kt diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/sample-project/src/main/res/drawable-v24/ic_launcher_foreground.xml similarity index 100% rename from app/src/main/res/drawable-v24/ic_launcher_foreground.xml rename to sample-project/src/main/res/drawable-v24/ic_launcher_foreground.xml diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/sample-project/src/main/res/drawable/ic_launcher_background.xml similarity index 100% rename from app/src/main/res/drawable/ic_launcher_background.xml rename to sample-project/src/main/res/drawable/ic_launcher_background.xml diff --git a/app/src/main/res/layout/activity_main.xml b/sample-project/src/main/res/layout/activity_main.xml similarity index 100% rename from app/src/main/res/layout/activity_main.xml rename to sample-project/src/main/res/layout/activity_main.xml diff --git a/app/src/main/res/layout/content_main.xml b/sample-project/src/main/res/layout/content_main.xml similarity index 100% rename from app/src/main/res/layout/content_main.xml rename to sample-project/src/main/res/layout/content_main.xml diff --git a/app/src/main/res/menu/menu_main.xml b/sample-project/src/main/res/menu/menu_main.xml similarity index 100% rename from app/src/main/res/menu/menu_main.xml rename to sample-project/src/main/res/menu/menu_main.xml diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/sample-project/src/main/res/mipmap-anydpi-v26/ic_launcher.xml similarity index 100% rename from app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml rename to sample-project/src/main/res/mipmap-anydpi-v26/ic_launcher.xml diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/sample-project/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml similarity index 100% rename from app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml rename to sample-project/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/sample-project/src/main/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-hdpi/ic_launcher.png rename to sample-project/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/sample-project/src/main/res/mipmap-hdpi/ic_launcher_round.png similarity index 100% rename from app/src/main/res/mipmap-hdpi/ic_launcher_round.png rename to sample-project/src/main/res/mipmap-hdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/sample-project/src/main/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-mdpi/ic_launcher.png rename to sample-project/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/sample-project/src/main/res/mipmap-mdpi/ic_launcher_round.png similarity index 100% rename from app/src/main/res/mipmap-mdpi/ic_launcher_round.png rename to sample-project/src/main/res/mipmap-mdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/sample-project/src/main/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-xhdpi/ic_launcher.png rename to sample-project/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/sample-project/src/main/res/mipmap-xhdpi/ic_launcher_round.png similarity index 100% rename from app/src/main/res/mipmap-xhdpi/ic_launcher_round.png rename to sample-project/src/main/res/mipmap-xhdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/sample-project/src/main/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-xxhdpi/ic_launcher.png rename to sample-project/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/sample-project/src/main/res/mipmap-xxhdpi/ic_launcher_round.png similarity index 100% rename from app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png rename to sample-project/src/main/res/mipmap-xxhdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/sample-project/src/main/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from app/src/main/res/mipmap-xxxhdpi/ic_launcher.png rename to sample-project/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/sample-project/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png similarity index 100% rename from app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png rename to sample-project/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png diff --git a/app/src/main/res/values/colors.xml b/sample-project/src/main/res/values/colors.xml similarity index 100% rename from app/src/main/res/values/colors.xml rename to sample-project/src/main/res/values/colors.xml diff --git a/app/src/main/res/values/dimens.xml b/sample-project/src/main/res/values/dimens.xml similarity index 100% rename from app/src/main/res/values/dimens.xml rename to sample-project/src/main/res/values/dimens.xml diff --git a/app/src/main/res/values/strings.xml b/sample-project/src/main/res/values/strings.xml similarity index 100% rename from app/src/main/res/values/strings.xml rename to sample-project/src/main/res/values/strings.xml diff --git a/app/src/main/res/values/styles.xml b/sample-project/src/main/res/values/styles.xml similarity index 100% rename from app/src/main/res/values/styles.xml rename to sample-project/src/main/res/values/styles.xml diff --git a/settings.gradle b/settings.gradle index 7068d71..f0420be 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -include ':app', ':etherscanapi' +include ':sample-project', ':etherscanapi'