commit 5cd4c6ca0c36c74f5fd4fc192f3fa96e0f61bef5 Author: aNNiMON Date: Wed Feb 14 00:07:42 2024 +0200 Initial commit diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100644 index 0000000..ceafd89 --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ant.properties b/ant.properties new file mode 100644 index 0000000..f2a252b --- /dev/null +++ b/ant.properties @@ -0,0 +1,19 @@ +# This file is used to override default values used by the Ant build system. +# +# This file must be checked into Version Control Systems, as it is +# integral to the build system of your project. + +# This file is only used by the Ant script. + +# You can use this to override default values such as +# 'source.dir' for the location of your java source folder and +# 'out.dir' for the location of your output folder. + +# You can also use it define how the release builds are signed by declaring +# the following properties: +# 'key.store' for the location of your keystore and +# 'key.alias' for the name of the key to use. +# The password will be asked during the build when you use the 'release' target. + +key.store=C:\\Android\\android-sign\\keystore +key.alias=sign diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..0b22bf9 --- /dev/null +++ b/build.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local.properties b/local.properties new file mode 100644 index 0000000..5e1ce4b --- /dev/null +++ b/local.properties @@ -0,0 +1,10 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must *NOT* be checked into Version Control Systems, +# as it contains information specific to your local configuration. + +# location of the SDK. This is only used by Ant +# For customization when using a Version Control System, please read the +# header note. +sdk.dir=D:\\Android\\android-sdk diff --git a/proguard-project.txt b/proguard-project.txt new file mode 100644 index 0000000..848fa43 --- /dev/null +++ b/proguard-project.txt @@ -0,0 +1,26 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: +-obfuscationdictionary E:\SETUPS\Disk\Programming\Java\compact.txt +-optimizationpasses 9 +-printmapping \Documents\NetBeansProjects\map.txt +-printusage \Documents\NetBeansProjects\usage.txt +# -dontusemixedcaseclassnames +# -repackageclasses '' + +# 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 *; +#} diff --git a/project.properties b/project.properties new file mode 100644 index 0000000..83ee023 --- /dev/null +++ b/project.properties @@ -0,0 +1,14 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +proguard.config=${sdk.dir}\\tools\\proguard\\proguard-android.txt:proguard-project.txt + +# Project target. +target=android-16 diff --git a/res/drawable-hdpi/ic_launcher.png b/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 0000000..7a28de2 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher.png differ diff --git a/res/drawable-ldpi/ic_launcher.png b/res/drawable-ldpi/ic_launcher.png new file mode 100644 index 0000000..6a0cf2c Binary files /dev/null and b/res/drawable-ldpi/ic_launcher.png differ diff --git a/res/drawable-mdpi/ic_launcher.png b/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 0000000..2ec332d Binary files /dev/null and b/res/drawable-mdpi/ic_launcher.png differ diff --git a/res/drawable-xhdpi/ic_launcher.png b/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 0000000..21ff9a9 Binary files /dev/null and b/res/drawable-xhdpi/ic_launcher.png differ diff --git a/res/layout/main.xml b/res/layout/main.xml new file mode 100644 index 0000000..2582ec0 --- /dev/null +++ b/res/layout/main.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + diff --git a/res/layout/ololo.xml b/res/layout/ololo.xml new file mode 100644 index 0000000..9fa5668 --- /dev/null +++ b/res/layout/ololo.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/res/layout/show_weather.xml b/res/layout/show_weather.xml new file mode 100644 index 0000000..3f0e7d0 --- /dev/null +++ b/res/layout/show_weather.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/res/values-v11/styles.xml b/res/values-v11/styles.xml new file mode 100644 index 0000000..d408cbc --- /dev/null +++ b/res/values-v11/styles.xml @@ -0,0 +1,5 @@ + + + + diff --git a/res/values/ids.xml b/res/values/ids.xml new file mode 100644 index 0000000..61396d7 --- /dev/null +++ b/res/values/ids.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 0000000..2dc55d2 --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,6 @@ + + + Screen Weather + Please wait + Close + diff --git a/res/values/styles.xml b/res/values/styles.xml new file mode 100644 index 0000000..4dba0d0 --- /dev/null +++ b/res/values/styles.xml @@ -0,0 +1,5 @@ + + +