diff options
author | Koushik Dutta <koushd@gmail.com> | 2013-05-16 00:42:26 -0700 |
---|---|---|
committer | Koushik Dutta <koushd@gmail.com> | 2013-05-16 00:42:34 -0700 |
commit | f071a9ced316de17568b2b23259bdda50e1bd4f4 (patch) | |
tree | 9b75f6edc6d513177b4885446124ca743959df3e /AndroidAsyncSample | |
parent | bf79ccdb8e325658197d9b932d829d74eb8b2490 (diff) | |
download | AndroidAsync-f071a9ced316de17568b2b23259bdda50e1bd4f4.tar.gz AndroidAsync-f071a9ced316de17568b2b23259bdda50e1bd4f4.tar.bz2 AndroidAsync-f071a9ced316de17568b2b23259bdda50e1bd4f4.zip |
Add support for byteorder and unconnected datagram sockets.
Android Studio stupport.
Diffstat (limited to 'AndroidAsyncSample')
5 files changed, 39 insertions, 39 deletions
diff --git a/AndroidAsyncSample/AndroidAsyncSample.iml b/AndroidAsyncSample/AndroidAsyncSample.iml new file mode 100644 index 0000000..918e7d3 --- /dev/null +++ b/AndroidAsyncSample/AndroidAsyncSample.iml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="JAVA_MODULE" version="4"> + <component name="FacetManager"> + <facet type="android" name="Android"> + <configuration> + <notImportedProperties> + <property>MANIFEST_FILE_PATH</property> + <property>RESOURCES_DIR_PATH</property> + <property>ASSETS_DIR_PATH</property> + <property>NATIVE_LIBS_DIR_PATH</property> + </notImportedProperties> + </configuration> + </facet> + </component> + <component name="NewModuleRootManager" inherit-compiler-output="true"> + <exclude-output /> + <content url="file://$MODULE_DIR$"> + <sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" /> + <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> + </content> + <orderEntry type="jdk" jdkName="Android 4.2.2" jdkType="Android SDK" /> + <orderEntry type="sourceFolder" forTests="false" /> + <orderEntry type="module" module-name="AndroidAsync" /> + </component> +</module> + diff --git a/AndroidAsyncSample/AndroidManifest.xml b/AndroidAsyncSample/AndroidManifest.xml index 31ae7bd..1cda0a5 100644 --- a/AndroidAsyncSample/AndroidManifest.xml +++ b/AndroidAsyncSample/AndroidManifest.xml @@ -5,7 +5,7 @@ <uses-sdk android:minSdkVersion="8" - android:targetSdkVersion="15" /> + android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> @@ -24,5 +24,4 @@ </intent-filter> </activity> </application> - </manifest>
\ No newline at end of file diff --git a/AndroidAsyncSample/gen/com/koushikdutta/async/sample/BuildConfig.java b/AndroidAsyncSample/gen/com/koushikdutta/async/sample/BuildConfig.java index 9429b8f..7e08348 100644 --- a/AndroidAsyncSample/gen/com/koushikdutta/async/sample/BuildConfig.java +++ b/AndroidAsyncSample/gen/com/koushikdutta/async/sample/BuildConfig.java @@ -1,3 +1,5 @@ +/*___Generated_by_IDEA___*/ + /** Automatically generated file. DO NOT MODIFY */ package com.koushikdutta.async.sample; diff --git a/AndroidAsyncSample/gen/com/koushikdutta/async/sample/Manifest.java b/AndroidAsyncSample/gen/com/koushikdutta/async/sample/Manifest.java new file mode 100644 index 0000000..a18afeb --- /dev/null +++ b/AndroidAsyncSample/gen/com/koushikdutta/async/sample/Manifest.java @@ -0,0 +1,7 @@ +/*___Generated_by_IDEA___*/ + +package com.koushikdutta.async.sample; + +/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ +public final class Manifest { +}
\ No newline at end of file diff --git a/AndroidAsyncSample/gen/com/koushikdutta/async/sample/R.java b/AndroidAsyncSample/gen/com/koushikdutta/async/sample/R.java index 849c156..15d1069 100644 --- a/AndroidAsyncSample/gen/com/koushikdutta/async/sample/R.java +++ b/AndroidAsyncSample/gen/com/koushikdutta/async/sample/R.java @@ -1,41 +1,7 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ +/*___Generated_by_IDEA___*/ package com.koushikdutta.async.sample; +/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */ public final class R { - public static final class attr { - } - public static final class drawable { - public static final int ic_action_search=0x7f020000; - public static final int ic_launcher=0x7f020001; - } - public static final class id { - public static final int chart=0x7f070004; - public static final int desksms=0x7f070002; - public static final int go=0x7f070000; - public static final int menu_settings=0x7f070005; - public static final int rommanager=0x7f070001; - public static final int tether=0x7f070003; - } - public static final class layout { - public static final int activity_main=0x7f030000; - } - public static final class menu { - public static final int activity_main=0x7f060000; - } - public static final class string { - public static final int app_name=0x7f040000; - public static final int download=0x7f040004; - public static final int hello_world=0x7f040001; - public static final int menu_settings=0x7f040002; - public static final int title_activity_main=0x7f040003; - } - public static final class style { - public static final int AppTheme=0x7f050000; - } -} +}
\ No newline at end of file |