diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 36a10c5..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index ccf2efe..f944b11 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,12 @@ + +# Created by https://www.gitignore.io/api/android,androidstudio,macos + +### Android ### # Built application files *.apk *.ap_ -# Files for the Dalvik VM +# Files for the ART/Dalvik VM *.dex # Java class files @@ -11,11 +15,208 @@ # Generated files bin/ gen/ +out/ # Gradle files .gradle/ build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# Intellij +*.iml +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/dictionaries +.idea/libraries + +# Keystore files +*.jks + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +### Android Patch ### +gen-external-apklibs + +### AndroidStudio ### +# Covers files to be ignored for android development using Android Studio. + +# Built application files + +# Files for the ART/Dalvik VM + +# Java class files + +# Generated files + +# Gradle files +.gradle + +# Signing files +.signing/ + +# Local configuration file (sdk path, etc) + +# Proguard folder generated by Eclipse + +# Log Files + +# Android Studio /*/build/ +/*/local.properties +/*/out +/*/*/build +/*/*/production +*.ipr +*~ +*.swp + +# Android Patch + +# External native build folder generated in Android Studio 2.2 and later + +# NDK +obj/ + +# IntelliJ IDEA +*.iws +/out/ + +# User-specific configurations +.idea/libraries/ +.idea/.name +.idea/compiler.xml +.idea/copyright/profiles_settings.xml +.idea/encodings.xml +.idea/misc.xml +.idea/modules.xml +.idea/scopes/scope_settings.xml +.idea/vcs.xml +.idea/jsLibraryMappings.xml +.idea/datasources.xml +.idea/dataSources.ids +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml + +# Keystore files + +# OS-specific files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Legacy Eclipse project files +.classpath +.project + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml) +hs_err_pid* + +## Plugin-specific files: + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Mongo Explorer plugin +.idea/mongoSettings.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +### AndroidStudio Patch ### +# Google Services plugin + +!/gradle/wrapper/gradle-wrapper.jar + +### macOS ### +*.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.TemporaryItems +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# End of https://www.gitignore.io/api/android,androidstudio,macos + +# Created by https://www.gitignore.io/api/android,androidstudio,macos + +### Android ### +# Built application files +*.apk +*.ap_ + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ + +# Gradle files +.gradle/ +build/ # Local configuration file (sdk path, etc) local.properties @@ -25,3 +226,169 @@ proguard/ # Log Files *.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# Intellij +*.iml +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/dictionaries +.idea/libraries + +# Keystore files +*.jks + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +### Android Patch ### +gen-external-apklibs + +### AndroidStudio ### +# Covers files to be ignored for android development using Android Studio. + +# Built application files + +# Files for the ART/Dalvik VM + +# Java class files + +# Generated files + +# Gradle files +.gradle + +# Signing files +.signing/ + +# Local configuration file (sdk path, etc) + +# Proguard folder generated by Eclipse + +# Log Files + +# Android Studio +/*/build/ +/*/local.properties +/*/out +/*/*/build +/*/*/production +*.ipr +*~ +*.swp + +# Android Patch + +# External native build folder generated in Android Studio 2.2 and later + +# NDK +obj/ + +# IntelliJ IDEA +*.iws +/out/ + +# User-specific configurations +.idea/libraries/ +.idea/.name +.idea/compiler.xml +.idea/copyright/profiles_settings.xml +.idea/encodings.xml +.idea/misc.xml +.idea/modules.xml +.idea/scopes/scope_settings.xml +.idea/vcs.xml +.idea/jsLibraryMappings.xml +.idea/datasources.xml +.idea/dataSources.ids +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml + +# Keystore files + +# OS-specific files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Legacy Eclipse project files +.classpath +.project + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml) +hs_err_pid* + +## Plugin-specific files: + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Mongo Explorer plugin +.idea/mongoSettings.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +### AndroidStudio Patch ### +# Google Services plugin + +!/gradle/wrapper/gradle-wrapper.jar + +### macOS ### +*.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.TemporaryItems +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# End of https://www.gitignore.io/api/android,androidstudio,macos diff --git a/anko-asynchronous-tasks/.DS_Store b/anko-asynchronous-tasks/.DS_Store deleted file mode 100644 index ba9fbdb..0000000 Binary files a/anko-asynchronous-tasks/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/Anko_asynchronous_tasks.iml b/anko-asynchronous-tasks/Anko_asynchronous_tasks.iml deleted file mode 100644 index d476d69..0000000 --- a/anko-asynchronous-tasks/Anko_asynchronous_tasks.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-asynchronous-tasks/MyApplication.iml b/anko-asynchronous-tasks/MyApplication.iml deleted file mode 100644 index 960784f..0000000 --- a/anko-asynchronous-tasks/MyApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-asynchronous-tasks/anko-asynchronous-tasks.iml b/anko-asynchronous-tasks/anko-asynchronous-tasks.iml deleted file mode 100644 index b180408..0000000 --- a/anko-asynchronous-tasks/anko-asynchronous-tasks.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-asynchronous-tasks/app/.DS_Store b/anko-asynchronous-tasks/app/.DS_Store deleted file mode 100644 index c20a161..0000000 Binary files a/anko-asynchronous-tasks/app/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/app/app.iml b/anko-asynchronous-tasks/app/app.iml deleted file mode 100644 index 8fa59b5..0000000 --- a/anko-asynchronous-tasks/app/app.iml +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-asynchronous-tasks/app/src/.DS_Store b/anko-asynchronous-tasks/app/src/.DS_Store deleted file mode 100644 index 2ea5374..0000000 Binary files a/anko-asynchronous-tasks/app/src/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/app/src/main/.DS_Store b/anko-asynchronous-tasks/app/src/main/.DS_Store deleted file mode 100644 index 9dfc2e1..0000000 Binary files a/anko-asynchronous-tasks/app/src/main/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/app/src/main/java/.DS_Store b/anko-asynchronous-tasks/app/src/main/java/.DS_Store deleted file mode 100644 index 06c0a42..0000000 Binary files a/anko-asynchronous-tasks/app/src/main/java/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/app/src/main/java/com/.DS_Store b/anko-asynchronous-tasks/app/src/main/java/com/.DS_Store deleted file mode 100644 index 2de4962..0000000 Binary files a/anko-asynchronous-tasks/app/src/main/java/com/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/app/src/main/java/com/irontec/.DS_Store b/anko-asynchronous-tasks/app/src/main/java/com/irontec/.DS_Store deleted file mode 100644 index c4805b8..0000000 Binary files a/anko-asynchronous-tasks/app/src/main/java/com/irontec/.DS_Store and /dev/null differ diff --git a/anko-asynchronous-tasks/gradle/wrapper/gradle-wrapper.jar b/anko-asynchronous-tasks/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 8c0fb64..0000000 Binary files a/anko-asynchronous-tasks/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/anko-simple-ui/Anko_simple_ui.iml b/anko-simple-ui/Anko_simple_ui.iml deleted file mode 100644 index c38d04a..0000000 --- a/anko-simple-ui/Anko_simple_ui.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-simple-ui/MyApplication.iml b/anko-simple-ui/MyApplication.iml deleted file mode 100644 index 960784f..0000000 --- a/anko-simple-ui/MyApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-simple-ui/anko-simple-ui.iml b/anko-simple-ui/anko-simple-ui.iml deleted file mode 100644 index b08184c..0000000 --- a/anko-simple-ui/anko-simple-ui.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-simple-ui/app/app.iml b/anko-simple-ui/app/app.iml deleted file mode 100644 index cd54616..0000000 --- a/anko-simple-ui/app/app.iml +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/anko-simple-ui/gradle/wrapper/gradle-wrapper.jar b/anko-simple-ui/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 8c0fb64..0000000 Binary files a/anko-simple-ui/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/gson-deserializers-okhttp-asynctask/Gson_deserializers_OkHttp_AsyncTask.iml b/gson-deserializers-okhttp-asynctask/Gson_deserializers_OkHttp_AsyncTask.iml deleted file mode 100644 index c5d3524..0000000 --- a/gson-deserializers-okhttp-asynctask/Gson_deserializers_OkHttp_AsyncTask.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/gson-deserializers-okhttp-asynctask/MyApplication.iml b/gson-deserializers-okhttp-asynctask/MyApplication.iml deleted file mode 100644 index 0bb6048..0000000 --- a/gson-deserializers-okhttp-asynctask/MyApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/gson-deserializers-okhttp-asynctask/app/app.iml b/gson-deserializers-okhttp-asynctask/app/app.iml deleted file mode 100644 index 8c41bd3..0000000 --- a/gson-deserializers-okhttp-asynctask/app/app.iml +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/gson-deserializers-okhttp-asynctask/gradle/wrapper/gradle-wrapper.jar b/gson-deserializers-okhttp-asynctask/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 8c0fb64..0000000 Binary files a/gson-deserializers-okhttp-asynctask/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/gson-deserializers-okhttp-asynctask/gson-deserializers-okhttp-asynctask.iml b/gson-deserializers-okhttp-asynctask/gson-deserializers-okhttp-asynctask.iml deleted file mode 100644 index d609cdb..0000000 --- a/gson-deserializers-okhttp-asynctask/gson-deserializers-okhttp-asynctask.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/httpurlconnection-asynctask/HttpUrlConnection_AsyncTask.iml b/httpurlconnection-asynctask/HttpUrlConnection_AsyncTask.iml deleted file mode 100644 index 0c0d564..0000000 --- a/httpurlconnection-asynctask/HttpUrlConnection_AsyncTask.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/httpurlconnection-asynctask/MyApplication.iml b/httpurlconnection-asynctask/MyApplication.iml deleted file mode 100644 index 0bb6048..0000000 --- a/httpurlconnection-asynctask/MyApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/httpurlconnection-asynctask/app/app.iml b/httpurlconnection-asynctask/app/app.iml deleted file mode 100644 index 78dad4b..0000000 --- a/httpurlconnection-asynctask/app/app.iml +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/httpurlconnection-asynctask/gradle/wrapper/gradle-wrapper.jar b/httpurlconnection-asynctask/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 8c0fb64..0000000 Binary files a/httpurlconnection-asynctask/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/httpurlconnection-asynctask/httpurlconnection-asynctask.iml b/httpurlconnection-asynctask/httpurlconnection-asynctask.iml deleted file mode 100644 index 7693cd4..0000000 --- a/httpurlconnection-asynctask/httpurlconnection-asynctask.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/listview-baseadapter-data-object/ListView_BaseAdapter_Data_Object.iml b/listview-baseadapter-data-object/ListView_BaseAdapter_Data_Object.iml deleted file mode 100644 index fde7cff..0000000 --- a/listview-baseadapter-data-object/ListView_BaseAdapter_Data_Object.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/listview-baseadapter-data-object/MyApplication.iml b/listview-baseadapter-data-object/MyApplication.iml deleted file mode 100644 index 0bb6048..0000000 --- a/listview-baseadapter-data-object/MyApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/listview-baseadapter-data-object/app/app.iml b/listview-baseadapter-data-object/app/app.iml deleted file mode 100644 index 7cdd93a..0000000 --- a/listview-baseadapter-data-object/app/app.iml +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/listview-baseadapter-data-object/gradle/wrapper/gradle-wrapper.jar b/listview-baseadapter-data-object/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 8c0fb64..0000000 Binary files a/listview-baseadapter-data-object/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/listview-baseadapter-data-object/listview-baseadapter-data-object.iml b/listview-baseadapter-data-object/listview-baseadapter-data-object.iml deleted file mode 100644 index c4dc745..0000000 --- a/listview-baseadapter-data-object/listview-baseadapter-data-object.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/okhttp-asynctask/.idea/workspace.xml b/okhttp-asynctask/.idea/workspace.xml index 171d940..5f88db9 100644 --- a/okhttp-asynctask/.idea/workspace.xml +++ b/okhttp-asynctask/.idea/workspace.xml @@ -23,30 +23,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + + + - - + - - - - - - + - - + - + - + + + + + + + + + + + @@ -2301,17 +2277,9 @@ - - - - - - - - - + diff --git a/okhttp-asynctask/MyApplication.iml b/okhttp-asynctask/MyApplication.iml deleted file mode 100644 index 0bb6048..0000000 --- a/okhttp-asynctask/MyApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/okhttp-asynctask/OkHttp_AsyncTask.iml b/okhttp-asynctask/OkHttp_AsyncTask.iml deleted file mode 100644 index ae0ca80..0000000 --- a/okhttp-asynctask/OkHttp_AsyncTask.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/okhttp-asynctask/app/app.iml b/okhttp-asynctask/app/app.iml deleted file mode 100644 index 5688c99..0000000 --- a/okhttp-asynctask/app/app.iml +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/okhttp-asynctask/gradle/wrapper/gradle-wrapper.jar b/okhttp-asynctask/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 8c0fb64..0000000 Binary files a/okhttp-asynctask/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/okhttp-asynctask/okhttp-asynctask.iml b/okhttp-asynctask/okhttp-asynctask.iml deleted file mode 100644 index 6df630a..0000000 --- a/okhttp-asynctask/okhttp-asynctask.iml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file