├── Android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── classes.dex │ ├── classes │ │ └── org │ │ │ └── easydarwin │ │ │ └── easypublisher │ │ │ ├── BuildConfig.class │ │ │ ├── CameraPublishActivity$1.class │ │ │ ├── CameraPublishActivity$2.class │ │ │ ├── CameraPublishActivity$ButtonResolutionListener.class │ │ │ ├── CameraPublishActivity$ButtonStartListener.class │ │ │ ├── CameraPublishActivity$ButtonStopListener.class │ │ │ ├── CameraPublishActivity$SwitchCameraListener.class │ │ │ ├── CameraPublishActivity.class │ │ │ ├── EasyPublisherJni.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── dexedLibs │ │ ├── easyVoiceEngine-1ae53acdecc21ec9aa7ef975abaaaff2.jar │ │ └── smartVoiceEngine-18b8e6bead7568daecdfec45cbdd1e7d.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── ic_camera_switch.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_camera_switch.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_camera_switch.png │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ ├── ic_camera_switch.png │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── build.xml ├── libs │ ├── armeabi │ │ ├── libEasyPublisher.so │ │ └── libx264.so │ └── easyVoiceEngine.jar ├── local.properties ├── proguard-project.txt ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_camera_switch.png │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_camera_switch.png │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_camera_switch.png │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ ├── ic_camera_switch.png │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ ├── menu_main.xml │ │ └── menu_play_active.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── org │ └── easydarwin │ └── easypublisher │ ├── CameraPublishActivity.java │ └── EasyPublisherJni.java ├── Doc └── EasyPublisher.psd └── README.md /Android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Android/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | EasyPublisher 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Android/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Android/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Android/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes.dex -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/BuildConfig.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$1.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$2.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$ButtonResolutionListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$ButtonResolutionListener.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$ButtonStartListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$ButtonStartListener.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$ButtonStopListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$ButtonStopListener.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$SwitchCameraListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity$SwitchCameraListener.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/CameraPublishActivity.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/EasyPublisherJni.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/EasyPublisherJni.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$attr.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$color.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$dimen.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$drawable.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$id.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$layout.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$menu.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$string.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$style.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R$styleable.class -------------------------------------------------------------------------------- /Android/bin/classes/org/easydarwin/easypublisher/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/classes/org/easydarwin/easypublisher/R.class -------------------------------------------------------------------------------- /Android/bin/dexedLibs/easyVoiceEngine-1ae53acdecc21ec9aa7ef975abaaaff2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/dexedLibs/easyVoiceEngine-1ae53acdecc21ec9aa7ef975abaaaff2.jar -------------------------------------------------------------------------------- /Android/bin/dexedLibs/smartVoiceEngine-18b8e6bead7568daecdfec45cbdd1e7d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/dexedLibs/smartVoiceEngine-18b8e6bead7568daecdfec45cbdd1e7d.jar -------------------------------------------------------------------------------- /Android/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-hdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-hdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-mdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-mdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-xhdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-xhdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-xxhdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-xxhdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/bin/resources.ap_ -------------------------------------------------------------------------------- /Android/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 29 | 30 | 31 | 40 | 41 | 42 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 54 | 55 | 67 | 68 | 69 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /Android/libs/armeabi/libEasyPublisher.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/libs/armeabi/libEasyPublisher.so -------------------------------------------------------------------------------- /Android/libs/armeabi/libx264.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/libs/armeabi/libx264.so -------------------------------------------------------------------------------- /Android/libs/easyVoiceEngine.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/libs/easyVoiceEngine.jar -------------------------------------------------------------------------------- /Android/local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/home/yaoquan/linuxwork/android-dev/adt-bundle-linux-x86-20140321/sdk 11 | -------------------------------------------------------------------------------- /Android/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Android/proguard.cfg: -------------------------------------------------------------------------------- 1 | -optimizationpasses 5 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | -dontpreverify 5 | -verbose 6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 7 | 8 | -keep public class * extends android.app.Activity 9 | -keep public class * extends android.app.Application 10 | -keep public class * extends android.app.Service 11 | -keep public class * extends android.content.BroadcastReceiver 12 | -keep public class * extends android.content.ContentProvider 13 | -keep public class * extends android.app.backup.BackupAgentHelper 14 | -keep public class * extends android.preference.Preference 15 | -keep public class com.android.vending.licensing.ILicensingService 16 | 17 | -keepclasseswithmembernames class * { 18 | native ; 19 | } 20 | 21 | -keepclasseswithmembers class * { 22 | public (android.content.Context, android.util.AttributeSet); 23 | } 24 | 25 | -keepclasseswithmembers class * { 26 | public (android.content.Context, android.util.AttributeSet, int); 27 | } 28 | 29 | -keepclassmembers class * extends android.app.Activity { 30 | public void *(android.view.View); 31 | } 32 | 33 | -keepclassmembers enum * { 34 | public static **[] values(); 35 | public static ** valueOf(java.lang.String); 36 | } 37 | 38 | -keep class * implements android.os.Parcelable { 39 | public static final android.os.Parcelable$Creator *; 40 | } 41 | -------------------------------------------------------------------------------- /Android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=Google Inc.:Google APIs:22 15 | -------------------------------------------------------------------------------- /Android/res/drawable-hdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-hdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/res/drawable-mdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-mdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/res/drawable-xhdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-xhdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/res/drawable-xxhdpi/ic_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-xxhdpi/ic_camera_switch.png -------------------------------------------------------------------------------- /Android/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zif2016/EasyPublisher/b7fa3a0d67d3658bad5c6a0a0a6ecf3af025fde7/Android/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 16 | 17 | 20 | 21 | 30 | 31 | 32 | 37 | 41 | 42 |