├── UnityProject ├── Temp │ └── UnityLockfile ├── Library │ ├── BuildPlayer.prefs │ ├── FailedAssetImports.txt │ ├── AssetImportState │ ├── ScriptAssemblies │ │ ├── CompilationCompleted.txt │ │ ├── Assembly-CSharp.dll │ │ └── Assembly-CSharp.dll.mdb │ ├── guidmapper │ ├── ScriptMapper │ ├── expandedItems │ ├── assetDatabase3 │ ├── AnnotationManager │ ├── AssetServerCacheV3 │ ├── AssetVersioning.db │ ├── CurrentLayout.dwlt │ ├── MonoManager.asset │ ├── BuildSettings.asset │ ├── ProjectSettings.asset │ ├── EditorUserSettings.asset │ ├── InspectorExpandedItems.asset │ ├── EditorUserBuildSettings.asset │ └── metadata │ │ ├── 19 │ │ └── 194c035f012824254a63f8f5d401fcc4 │ │ ├── 22 │ │ └── 22903daaa8ded4e2cad1129073af73a8 │ │ ├── 23 │ │ └── 2315283d67be54427b6a97dc34f99a58 │ │ ├── 34 │ │ └── 340ec0eed017540019525731fce0b602 │ │ ├── 49 │ │ └── 49c40f38d8ad1409cb854d9fe4951702 │ │ ├── 72 │ │ └── 728876e1fb1e041ff9e6a47901f53638 │ │ ├── 80 │ │ └── 80a3616ca19596e4da0f10f14d241e9f │ │ ├── 00 │ │ ├── 00000000000000001000000000000000 │ │ ├── 00000000000000002000000000000000 │ │ ├── 00000000000000003000000000000000 │ │ ├── 00000000000000004000000000000000 │ │ ├── 00000000000000004100000000000000 │ │ ├── 00000000000000005000000000000000 │ │ ├── 00000000000000005100000000000000 │ │ ├── 00000000000000006000000000000000 │ │ ├── 00000000000000006100000000000000 │ │ ├── 00000000000000007000000000000000 │ │ ├── 00000000000000008000000000000000 │ │ ├── 00000000000000009000000000000000 │ │ ├── 0000000000000000a000000000000000 │ │ ├── 0000000000000000b000000000000000 │ │ └── 0000000000000000c000000000000000 │ │ ├── 02 │ │ └── 0240aac14d46a4ab2a8b0b5a219b0bac │ │ ├── 05 │ │ └── 05aee89439c6846fa8317304b359ac78 │ │ ├── 4e │ │ └── 4e9ac6a49be5d4eadb275d1f364852d2 │ │ ├── a9 │ │ └── a9a8fbd3efa5a45e88e42878ffe8c3e3 │ │ ├── be │ │ └── be61638e4744047a0bfab661ffb41a67 │ │ ├── f3 │ │ └── f399e434735634e6f99ef7b265e75b2b │ │ └── f5 │ │ └── f5f67c52d1564df4a8936ccd202a3bd8 ├── Assets │ ├── Scenes.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── iOS.meta │ │ ├── iOS │ │ │ ├── NativeAppstore.h.meta │ │ │ ├── NativeAppstore.mm.meta │ │ │ ├── NativeAppstore.h │ │ │ └── NativeAppstore.mm │ │ ├── Android.meta │ │ └── Android │ │ │ ├── NativeAppstore.jar.meta │ │ │ └── NativeAppstore.jar │ ├── Scenes │ │ ├── AppstoreTestScene.unity.meta │ │ └── AppstoreTestScene.unity │ ├── Scripts.meta │ └── Scripts │ │ ├── Singleton.cs.meta │ │ ├── AppstoreHandler.cs.meta │ │ ├── AppstoreTestScene.cs.meta │ │ ├── AppstoreTestScene.cs │ │ ├── AppstoreHandler.cs │ │ └── Singleton.cs ├── ProjectSettings │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── AudioManager.asset │ ├── EditorSettings.asset │ ├── InputManager.asset │ ├── NavMeshLayers.asset │ ├── NetworkManager.asset │ ├── DynamicsManager.asset │ ├── GraphicsSettings.asset │ ├── ProjectSettings.asset │ ├── QualitySettings.asset │ ├── EditorBuildSettings.asset │ └── Physics2DSettings.asset ├── NativeAppstore.userprefs ├── UnityProject.userprefs ├── UnityProject.sln ├── UnityProject-csharp.sln ├── NativeAppstore.sln ├── NativeAppstore-csharp.sln ├── Assembly-CSharp-vs.csproj └── Assembly-CSharp.csproj ├── AndroidPluginProject ├── .metadata │ ├── .lock │ ├── version.ini │ ├── .plugins │ │ ├── org.eclipse.cdt.make.core │ │ │ ├── specs.c │ │ │ └── specs.cpp │ │ ├── org.eclipse.jdt.core │ │ │ ├── invalidArchivesCache │ │ │ ├── nonChainingJarsCache │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.core.resources │ │ │ ├── .root │ │ │ │ ├── .indexes │ │ │ │ │ ├── history.version │ │ │ │ │ ├── properties.version │ │ │ │ │ └── properties.index │ │ │ │ └── 1.tree │ │ │ └── .safetable │ │ │ │ └── org.eclipse.core.resources │ │ ├── org.eclipse.cdt.core │ │ │ └── .log │ │ ├── org.eclipse.core.runtime │ │ │ └── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.cdt.ui.prefs │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ ├── com.android.ide.eclipse.adt.prefs │ │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ │ └── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.jdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ └── dialog_settings.xml │ │ └── org.eclipse.ui.workbench │ │ │ ├── workingsets.xml │ │ │ └── dialog_settings.xml │ └── .log ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ ├── values-v14 │ │ └── styles.xml │ ├── menu │ │ └── main.xml │ └── layout │ │ └── activity_main.xml ├── bin │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── R.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$integer.class │ │ │ │ └── R$styleable.class │ │ └── com │ │ │ └── purplelilgirl │ │ │ └── nativeappstore │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$menu.class │ │ │ ├── R$style.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── BuildConfig.class │ │ │ ├── R$drawable.class │ │ │ ├── R$styleable.class │ │ │ ├── NativeAppstore.class │ │ │ └── NativeAppstore$1.class │ ├── jarlist.cache │ ├── AndroidManifest.xml │ └── R.txt ├── gen │ ├── com │ │ └── purplelilgirl │ │ │ └── nativeappstore │ │ │ └── BuildConfig.java │ └── android │ │ └── support │ │ └── v7 │ │ └── appcompat │ │ └── R.java ├── .classpath ├── project.properties ├── src │ └── com │ │ └── purplelilgirl │ │ └── nativeappstore │ │ └── NativeAppstore.java ├── proguard-project.txt ├── .project └── AndroidManifest.xml ├── UnityPackage └── NativeAppstore.unitypackage ├── README.md └── LICENSE /UnityProject/Temp/UnityLockfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityProject/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityProject/Library/FailedAssetImports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityProject/Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 13;0;-1 -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.core.runtime=1 -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/CompilationCompleted.txt: -------------------------------------------------------------------------------- 1 | Completed 2 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.jdt.core/invalidArchivesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /UnityProject/Library/guidmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/guidmapper -------------------------------------------------------------------------------- /UnityProject/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/ScriptMapper -------------------------------------------------------------------------------- /UnityProject/Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/expandedItems -------------------------------------------------------------------------------- /UnityProject/Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/assetDatabase3 -------------------------------------------------------------------------------- /UnityProject/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/AnnotationManager -------------------------------------------------------------------------------- /UnityProject/Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /UnityProject/Library/AssetVersioning.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/AssetVersioning.db -------------------------------------------------------------------------------- /UnityProject/Library/CurrentLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/CurrentLayout.dwlt -------------------------------------------------------------------------------- /UnityProject/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/MonoManager.asset -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.cdt.core/.log: -------------------------------------------------------------------------------- 1 | *** SESSION Dec 01, 2014 23:52:29.96 ------------------------------------------- 2 | -------------------------------------------------------------------------------- /AndroidPluginProject/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/ic_launcher-web.png -------------------------------------------------------------------------------- /UnityPackage/NativeAppstore.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityPackage/NativeAppstore.unitypackage -------------------------------------------------------------------------------- /UnityProject/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/BuildSettings.asset -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.jdt.corestateVersionNumber27 -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | version=1 3 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be61638e4744047a0bfab661ffb41a67 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Library/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/ProjectSettings.asset -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f399e434735634e6f99ef7b265e75b2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2315283d67be54427b6a97dc34f99a58 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/iOS/NativeAppstore.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9a8fbd3efa5a45e88e42878ffe8c3e3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/iOS/NativeAppstore.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 340ec0eed017540019525731fce0b602 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scenes/AppstoreTestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05aee89439c6846fa8317304b359ac78 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e9ac6a49be5d4eadb275d1f364852d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /AndroidPluginProject/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/libs/android-support-v4.jar -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22903daaa8ded4e2cad1129073af73a8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android/NativeAppstore.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 194c035f012824254a63f8f5d401fcc4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UnityProject/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /UnityProject/Assets/Scenes/AppstoreTestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Assets/Scenes/AppstoreTestScene.unity -------------------------------------------------------------------------------- /UnityProject/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPluginProject/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/Android/NativeAppstore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Assets/Plugins/Android/NativeAppstore.jar -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /UnityProject/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /AndroidPluginProject/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPluginProject/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.resources/.root/1.tree: -------------------------------------------------------------------------------- 1 | org.eclipse.cdt.coreorg.eclipse.jdt.core -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 | JRE_SRC 2 | JUNIT_HOME JRE_SRCROOTJRE_LIBJUNIT_SRC_HOME -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000005100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000005100000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000006100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000006100000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/02/0240aac14d46a4ab2a8b0b5a219b0bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/02/0240aac14d46a4ab2a8b0b5a219b0bac -------------------------------------------------------------------------------- /UnityProject/Library/metadata/05/05aee89439c6846fa8317304b359ac78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/05/05aee89439c6846fa8317304b359ac78 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/19/194c035f012824254a63f8f5d401fcc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/19/194c035f012824254a63f8f5d401fcc4 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/22/22903daaa8ded4e2cad1129073af73a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/22/22903daaa8ded4e2cad1129073af73a8 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/23/2315283d67be54427b6a97dc34f99a58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/23/2315283d67be54427b6a97dc34f99a58 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/34/340ec0eed017540019525731fce0b602: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/34/340ec0eed017540019525731fce0b602 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/49/49c40f38d8ad1409cb854d9fe4951702: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/49/49c40f38d8ad1409cb854d9fe4951702 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/4e/4e9ac6a49be5d4eadb275d1f364852d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/4e/4e9ac6a49be5d4eadb275d1f364852d2 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/72/728876e1fb1e041ff9e6a47901f53638: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/72/728876e1fb1e041ff9e6a47901f53638 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f -------------------------------------------------------------------------------- /UnityProject/Library/metadata/a9/a9a8fbd3efa5a45e88e42878ffe8c3e3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/a9/a9a8fbd3efa5a45e88e42878ffe8c3e3 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/be/be61638e4744047a0bfab661ffb41a67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/be/be61638e4744047a0bfab661ffb41a67 -------------------------------------------------------------------------------- /UnityProject/Library/metadata/f3/f399e434735634e6f99ef7b265e75b2b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/f3/f399e434735634e6f99ef7b265e75b2b -------------------------------------------------------------------------------- /UnityProject/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/UnityProject/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$id.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$anim.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$attr.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$bool.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$color.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$dimen.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$menu.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$style.class -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | spelling_locale_initialized=true 3 | useAnnotationsPrefPage=true 4 | useQuickDiffPrefPage=true 5 | -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$integer.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$layout.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$string.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/BuildConfig.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$drawable.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/R$styleable.class -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- 1 | PROBLEMS_FILTERS_MIGRATE=true 2 | eclipse.preferences.version=1 3 | platformState=1409724469026 4 | quickStart=false 5 | tipsAndTricks=true 6 | -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/NativeAppstore.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/NativeAppstore.class -------------------------------------------------------------------------------- /AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/NativeAppstore$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/bin/classes/com/purplelilgirl/nativeappstore/NativeAppstore$1.class -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/Singleton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 728876e1fb1e041ff9e6a47901f53638 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/AppstoreHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49c40f38d8ad1409cb854d9fe4951702 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/AppstoreTestScene.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0240aac14d46a4ab2a8b0b5a219b0bac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs: -------------------------------------------------------------------------------- 1 | com.android.ide.eclipse.adt.fixLegacyEditors=1 2 | com.android.ide.eclipse.adt.sdk=/adt-bundle-mac-x86_64-20140702/sdk 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\n\n 3 | -------------------------------------------------------------------------------- /AndroidPluginProject/gen/com/purplelilgirl/nativeappstore/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.purplelilgirl.nativeappstore; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purplelilgirl/Unity-NativeAppstore/HEAD/AndroidPluginProject/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /AndroidPluginProject/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NativeAppstore 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/iOS/NativeAppstore.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | // Root view controller of Unity screen 5 | extern UIViewController *UnityGetGLViewController(); 6 | 7 | @interface NativeAppstore : NSObject 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UnityProject/NativeAppstore.userprefs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /AndroidPluginProject/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1403515040000 758727 efec67655f6db90757faa37201efcee2a9ec3507 /Users/hsiaoweichen/unityandroidplugins/appcompat_v7/libs/android-support-v4.jar 5 | 1417256315000 758727 efec67655f6db90757faa37201efcee2a9ec3507 /Users/hsiaoweichen/NativeAppstore/AndroidProject/libs/android-support-v4.jar 6 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UnityProject/UnityProject.userprefs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | content_assist_proposals_background=255,255,255 2 | content_assist_proposals_foreground=0,0,0 3 | eclipse.preferences.version=1 4 | fontPropagated=true 5 | org.eclipse.jdt.ui.editor.tab.width= 6 | org.eclipse.jdt.ui.formatterprofiles.version=12 7 | org.eclipse.jdt.ui.javadoclocations.migrated=true 8 | org.eclipse.jface.textfont=1|Monaco|11.0|0|COCOA|1|; 9 | proposalOrderMigrated=true 10 | spelling_locale_initialized=true 11 | tabWidthPropagated=true 12 | useAnnotationsPrefPage=true 13 | useQuickDiffPrefPage=true 14 | -------------------------------------------------------------------------------- /AndroidPluginProject/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AndroidPluginProject/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=android-20 15 | android.library.reference.1=../../unityandroidplugins/appcompat_v7 16 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/AppstoreTestScene.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class AppstoreTestScene : MonoBehaviour 5 | { 6 | public string m_appID_IOS = "840066184"; 7 | public string m_appID_Android = "com.orangenose.noone"; 8 | 9 | public void OnButtonClick(string buttonName) 10 | { 11 | if(buttonName == "ViewApp") 12 | { 13 | if(!Application.isEditor) 14 | { 15 | #if UNITY_IPHONE 16 | AppstoreHandler.Instance.openAppInStore(m_appID_IOS); 17 | #endif 18 | 19 | #if UNITY_ANDROID 20 | AppstoreHandler.Instance.openAppInStore(m_appID_Android); 21 | #endif 22 | } else 23 | { Debug.Log("AppstoreTestScene:: Cannot view app in Editor."); 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /AndroidPluginProject/src/com/purplelilgirl/nativeappstore/NativeAppstore.java: -------------------------------------------------------------------------------- 1 | package com.purplelilgirl.nativeappstore; 2 | 3 | import android.app.Activity; 4 | import android.content.Intent; 5 | import android.net.Uri; 6 | 7 | import com.unity3d.player.UnityPlayer; 8 | 9 | public class NativeAppstore 10 | { 11 | private Activity activity; 12 | 13 | public NativeAppstore() 14 | { activity = UnityPlayer.currentActivity; 15 | } 16 | 17 | public void OpenInAppStore(final String url) 18 | { 19 | activity.runOnUiThread(new Runnable() 20 | { public void run() 21 | { 22 | Intent intent = new Intent(Intent.ACTION_VIEW); 23 | intent.setData(Uri.parse(url)); 24 | activity.startActivity(intent); 25 | } 26 | }); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Unity-NativeAppstore 2 | ==================== 3 | 4 | Unity Plugin that allows opening of an app in the iOS and Android Appstore 5 | 6 | iOS 7 | - uses SKStoreProductViewController when its available, defaults to OpenURL 8 | - don't forget to include StoreKit.framework in Build Phases Link Binary with Libraries 9 | - to prevent the Status Bar showing in the Appstore view, add View Controller based Status Bar to Info.plist and set it to false 10 | 11 | Android 12 | - uses Uri Intent 13 | 14 | 15 | Project Structure: 16 | 17 | UnityProject - Unity Project folder, includes NativeappstoreHandler, NativeAppstoreTestScene 18 | 19 | UnityPackage - Unity Package that can be imported to any Unity Project 20 | 21 | AndroidPluginProject - source code of NativeAppstore.jar 22 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /AndroidPluginProject/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 | 17 | 18 | 19 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /AndroidPluginProject/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 | -------------------------------------------------------------------------------- /AndroidPluginProject/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | NativeAppstore 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 | -------------------------------------------------------------------------------- /AndroidPluginProject/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /AndroidPluginProject/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 purplelilgirl 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/AppstoreHandler.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System; 3 | using System.Collections; 4 | using System.Runtime.InteropServices; 5 | 6 | public class AppstoreHandler : Singleton 7 | { 8 | #if UNITY_IPHONE 9 | [DllImport ("__Internal")] private static extern void _OpenAppInStore(int appID); 10 | #endif 11 | 12 | #if UNITY_ANDROID 13 | private static AndroidJavaObject jo; 14 | #endif 15 | 16 | void Awake() 17 | { 18 | if(!Application.isEditor) 19 | { 20 | #if UNITY_ANDROID 21 | jo = new AndroidJavaObject("com.purplelilgirl.nativeappstore.NativeAppstore"); 22 | #endif 23 | 24 | } else 25 | { Debug.Log("AppstoreHandler:: Cannot open Appstore in Editor."); 26 | } 27 | } 28 | 29 | public void openAppInStore(string appID) 30 | { 31 | if(!Application.isEditor) 32 | { 33 | #if UNITY_IPHONE 34 | int appIDIOS; 35 | 36 | if(int.TryParse(appID, out appIDIOS)) 37 | { _OpenAppInStore(appIDIOS); 38 | } 39 | #endif 40 | 41 | #if UNITY_ANDROID 42 | jo.Call("OpenInAppStore", "market://details?id="+appID); 43 | #endif 44 | } else 45 | { Debug.Log("AppstoreHandler:: Cannot open Appstore in Editor."); 46 | } 47 | } 48 | 49 | public void appstoreClosed() 50 | { Debug.Log("AppstoreHandler:: Appstore closed."); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /UnityProject/UnityProject.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{D001055D-889C-3BAE-66BD-CA6F720933D1}") = "UnityProject", "Assembly-CSharp.csproj", "{5B580621-09B4-68CB-B5F4-5B9DD210A60F}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | GlobalSection(MonoDevelopProperties) = preSolution 21 | StartupItem = Assembly-CSharp.csproj 22 | Policies = $0 23 | $0.TextStylePolicy = $1 24 | $1.inheritsSet = null 25 | $1.scope = text/x-csharp 26 | $0.CSharpFormattingPolicy = $2 27 | $2.inheritsSet = Mono 28 | $2.inheritsScope = text/x-csharp 29 | $2.scope = text/x-csharp 30 | $0.TextStylePolicy = $3 31 | $3.FileWidth = 120 32 | $3.TabWidth = 4 33 | $3.EolMarker = Unix 34 | $3.inheritsSet = Mono 35 | $3.inheritsScope = text/plain 36 | $3.scope = text/plain 37 | EndGlobalSection 38 | 39 | EndGlobal 40 | -------------------------------------------------------------------------------- /UnityProject/UnityProject-csharp.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{D001055D-889C-3BAE-66BD-CA6F720933D1}") = "UnityProject", "Assembly-CSharp-vs.csproj", "{5B580621-09B4-68CB-B5F4-5B9DD210A60F}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | GlobalSection(MonoDevelopProperties) = preSolution 21 | StartupItem = Assembly-CSharp.csproj 22 | Policies = $0 23 | $0.TextStylePolicy = $1 24 | $1.inheritsSet = null 25 | $1.scope = text/x-csharp 26 | $0.CSharpFormattingPolicy = $2 27 | $2.inheritsSet = Mono 28 | $2.inheritsScope = text/x-csharp 29 | $2.scope = text/x-csharp 30 | $0.TextStylePolicy = $3 31 | $3.FileWidth = 120 32 | $3.TabWidth = 4 33 | $3.EolMarker = Unix 34 | $3.inheritsSet = Mono 35 | $3.inheritsScope = text/plain 36 | $3.scope = text/plain 37 | EndGlobalSection 38 | 39 | EndGlobal 40 | -------------------------------------------------------------------------------- /UnityProject/NativeAppstore.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{9B5961A6-FBF6-7D96-DC97-13C169DFAC46}") = "NativeAppstore", "Assembly-CSharp.csproj", "{C134DCA8-3B77-01FF-8959-252DB8126EC0}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | GlobalSection(MonoDevelopProperties) = preSolution 21 | StartupItem = Assembly-CSharp.csproj 22 | Policies = $0 23 | $0.TextStylePolicy = $1 24 | $1.inheritsSet = null 25 | $1.scope = text/x-csharp 26 | $0.CSharpFormattingPolicy = $2 27 | $2.inheritsSet = Mono 28 | $2.inheritsScope = text/x-csharp 29 | $2.scope = text/x-csharp 30 | $0.TextStylePolicy = $3 31 | $3.FileWidth = 120 32 | $3.TabWidth = 4 33 | $3.EolMarker = Unix 34 | $3.inheritsSet = Mono 35 | $3.inheritsScope = text/plain 36 | $3.scope = text/plain 37 | EndGlobalSection 38 | 39 | EndGlobal 40 | -------------------------------------------------------------------------------- /UnityProject/NativeAppstore-csharp.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{9B5961A6-FBF6-7D96-DC97-13C169DFAC46}") = "NativeAppstore", "Assembly-CSharp-vs.csproj", "{C134DCA8-3B77-01FF-8959-252DB8126EC0}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {C134DCA8-3B77-01FF-8959-252DB8126EC0}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | GlobalSection(MonoDevelopProperties) = preSolution 21 | StartupItem = Assembly-CSharp.csproj 22 | Policies = $0 23 | $0.TextStylePolicy = $1 24 | $1.inheritsSet = null 25 | $1.scope = text/x-csharp 26 | $0.CSharpFormattingPolicy = $2 27 | $2.inheritsSet = Mono 28 | $2.inheritsScope = text/x-csharp 29 | $2.scope = text/x-csharp 30 | $0.TextStylePolicy = $3 31 | $3.FileWidth = 120 32 | $3.TabWidth = 4 33 | $3.EolMarker = Unix 34 | $3.inheritsSet = Mono 35 | $3.inheritsScope = text/plain 36 | $3.scope = text/plain 37 | EndGlobalSection 38 | 39 | EndGlobal 40 | -------------------------------------------------------------------------------- /UnityProject/Assets/Plugins/iOS/NativeAppstore.mm: -------------------------------------------------------------------------------- 1 | #import "NativeAppstore.h" 2 | 3 | @implementation NativeAppstore 4 | 5 | - (id)init 6 | { 7 | self = [super init]; 8 | 9 | return self; 10 | } 11 | 12 | -(void) openAppInStore: (int) appID 13 | { 14 | if ([SKStoreProductViewController class]) 15 | { 16 | NSDictionary *parameters = @{SKStoreProductParameterITunesItemIdentifier: [NSNumber numberWithInteger: appID]}; 17 | 18 | SKStoreProductViewController *productViewController = [[SKStoreProductViewController alloc] init]; 19 | [productViewController loadProductWithParameters:parameters completionBlock:nil]; 20 | [productViewController setDelegate:self]; 21 | [UnityGetGLViewController() presentViewController:productViewController animated:YES completion:nil]; 22 | } 23 | 24 | else 25 | { 26 | 27 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString: [NSString stringWithFormat: @"http://itunes.apple.com/app/id%d?mt=8", appID]]]; 28 | } 29 | } 30 | 31 | -(void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController 32 | { [viewController dismissViewControllerAnimated:YES completion:nil]; 33 | 34 | 35 | UnitySendMessage("~AppstoreHandler", "appstoreClosed", ""); 36 | } 37 | 38 | - (BOOL)prefersStatusBarHidden 39 | { return YES; 40 | } 41 | 42 | @end 43 | 44 | static NativeAppstore *nativeAppstorePlugin = nil; 45 | 46 | extern "C" 47 | { 48 | void _OpenAppInStore(int appID) 49 | { 50 | NSLog(@"NativeAppStore :: Open App %d", appID); 51 | 52 | if (nativeAppstorePlugin == nil) 53 | nativeAppstorePlugin = [[NativeAppstore alloc] init]; 54 | 55 | [nativeAppstorePlugin openAppInStore: appID]; 56 | } 57 | } -------------------------------------------------------------------------------- /UnityProject/Assets/Scripts/Singleton.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Singleton.cs 3 | * 4 | * - Unity Implementation of Singleton template 5 | * 6 | */ 7 | 8 | using UnityEngine; 9 | 10 | /// 11 | /// Be aware this will not prevent a non singleton constructor 12 | /// such as `T myT = new T();` 13 | /// To prevent that, add `protected T () {}` to your singleton class. 14 | /// 15 | /// As a note, this is made as MonoBehaviour because we need Coroutines. 16 | /// 17 | public class Singleton : MonoBehaviour where T : MonoBehaviour 18 | { 19 | private static T _instance; 20 | 21 | private static object _lock = new object(); 22 | 23 | public static T Instance 24 | { 25 | get 26 | { 27 | if (applicationIsQuitting) { 28 | Debug.LogWarning("[Singleton] Instance '"+ typeof(T) + 29 | "' already destroyed on application quit." + 30 | " Won't create again - returning null."); 31 | return null; 32 | } 33 | 34 | lock(_lock) 35 | { 36 | if (_instance == null) 37 | { 38 | _instance = (T) FindObjectOfType(typeof(T)); 39 | 40 | if ( FindObjectsOfType(typeof(T)).Length > 1 ) 41 | { 42 | Debug.LogError("[Singleton] Something went really wrong " + 43 | " - there should never be more than 1 singleton!" + 44 | " Reopenning the scene might fix it."); 45 | return _instance; 46 | } 47 | 48 | if (_instance == null) 49 | { 50 | GameObject singleton = new GameObject(); 51 | _instance = singleton.AddComponent(); 52 | singleton.name = "~"+ typeof(T).ToString(); 53 | 54 | DontDestroyOnLoad(singleton); 55 | 56 | Debug.Log("[Singleton] An instance of " + typeof(T) + 57 | " is needed in the scene, so '" + singleton + 58 | "' was created with DontDestroyOnLoad."); 59 | } else { 60 | Debug.Log("[Singleton] Using instance already created: " + 61 | _instance.gameObject.name); 62 | } 63 | } 64 | 65 | return _instance; 66 | } 67 | } 68 | } 69 | 70 | private static bool applicationIsQuitting = false; 71 | /// 72 | /// When Unity quits, it destroys objects in a random order. 73 | /// In principle, a Singleton is only destroyed when application quits. 74 | /// If any script calls Instance after it have been destroyed, 75 | /// it will create a buggy ghost object that will stay on the Editor scene 76 | /// even after stopping playing the Application. Really bad! 77 | /// So, this was made to be sure we're not creating that buggy ghost object. 78 | /// 79 | public void OnDestroy () { 80 | applicationIsQuitting = true; 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 7 | 8 | 9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /UnityProject/Assembly-CSharp-vs.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F} 9 | Library 10 | Properties 11 | 12 | Assembly-CSharp 13 | v3.5 14 | 512 15 | Assets 16 | 17 | 18 | true 19 | full 20 | false 21 | Temp\bin\Debug\ 22 | DEBUG;TRACE;UNITY_4_6_0;UNITY_4_6;UNITY_ANDROID;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_UNITYEVENTS;ENABLE_NEW_HIERARCHY ;ENABLE_AUDIO_FMOD;ENABLE_MONO;ENABLE_TERRAIN;ENABLE_SUBSTANCE;ENABLE_GENERICS;INCLUDE_WP8SUPPORT;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_4_6_FEATURES;INCLUDE_WP_BLUE_SUPPORT;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;UNITY_ANDROID_API;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_OSX 23 | prompt 24 | 4 25 | 0169 26 | 27 | 28 | pdbonly 29 | true 30 | Temp\bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 0169 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll 43 | 44 | 45 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | /Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.0/UnityEngine.UI.dll 54 | 55 | 56 | 57 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /UnityProject/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | {5B580621-09B4-68CB-B5F4-5B9DD210A60F} 9 | Library 10 | Properties 11 | 12 | Assembly-CSharp 13 | v3.5 14 | 512 15 | Assets 16 | 17 | 18 | true 19 | full 20 | false 21 | Temp\bin\Debug\ 22 | DEBUG;TRACE;UNITY_4_6_0;UNITY_4_6;UNITY_ANDROID;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_UNITYEVENTS;ENABLE_NEW_HIERARCHY ;ENABLE_AUDIO_FMOD;ENABLE_MONO;ENABLE_TERRAIN;ENABLE_SUBSTANCE;ENABLE_GENERICS;INCLUDE_WP8SUPPORT;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_4_6_FEATURES;INCLUDE_WP_BLUE_SUPPORT;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;UNITY_ANDROID_API;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_OSX 23 | prompt 24 | 4 25 | 0169 26 | 27 | 28 | pdbonly 29 | true 30 | Temp\bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 0169 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll 43 | 44 | 45 | /Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | /Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.0/UnityEngine.UI.dll 54 | 55 | 56 | 57 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /AndroidPluginProject/.metadata/.log: -------------------------------------------------------------------------------- 1 | !SESSION 2014-12-01 23:51:50.208 ----------------------------------------------- 2 | eclipse.buildId=M20130204-1200 3 | java.version=1.6.0_65 4 | java.vendor=Apple Inc. 5 | BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US 6 | Framework arguments: -product com.android.ide.eclipse.adt.package.adtproduct -keyring /Users/hsiaoweichen/.eclipse_keyring -showlocation 7 | Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product com.android.ide.eclipse.adt.package.adtproduct -keyring /Users/hsiaoweichen/.eclipse_keyring -showlocation 8 | 9 | !ENTRY org.eclipse.core.net 1 0 2014-12-01 23:52:17.791 10 | !MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences 11 | 12 | !ENTRY com.android.ide.eclipse.adt 4 0 2014-12-01 23:52:58.471 13 | !MESSAGE New Project Wizard failed 14 | !STACK 0 15 | java.lang.reflect.InvocationTargetException 16 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.createProjectAsync(NewProjectCreator.java:677) 17 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.access$0(NewProjectCreator.java:590) 18 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator$3.execute(NewProjectCreator.java:400) 19 | at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:106) 20 | at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2344) 21 | at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:118) 22 | at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121) 23 | Caused by: org.eclipse.core.internal.resources.ResourceException: Invalid project description. 24 | at org.eclipse.core.internal.resources.Project.checkDescription(Project.java:175) 25 | at org.eclipse.core.internal.resources.Project.assertCreateRequirements(Project.java:53) 26 | at org.eclipse.core.internal.resources.Project.create(Project.java:287) 27 | at org.eclipse.core.internal.resources.Project.create(Project.java:269) 28 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.createEclipseProject(NewProjectCreator.java:727) 29 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.createProjectAsync(NewProjectCreator.java:660) 30 | ... 6 more 31 | Root exception: 32 | org.eclipse.core.internal.resources.ResourceException: Invalid project description. 33 | at org.eclipse.core.internal.resources.Project.checkDescription(Project.java:175) 34 | at org.eclipse.core.internal.resources.Project.assertCreateRequirements(Project.java:53) 35 | at org.eclipse.core.internal.resources.Project.create(Project.java:287) 36 | at org.eclipse.core.internal.resources.Project.create(Project.java:269) 37 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.createEclipseProject(NewProjectCreator.java:727) 38 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.createProjectAsync(NewProjectCreator.java:660) 39 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator.access$0(NewProjectCreator.java:590) 40 | at com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreator$3.execute(NewProjectCreator.java:400) 41 | at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:106) 42 | at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2344) 43 | at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:118) 44 | at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121) 45 | Contains: OK 46 | Contains: /Users/hsiaoweichen/Unity-NativeAppstore/AndroidPluginProject overlaps the workspace location: /Users/hsiaoweichen/Unity-NativeAppstore/AndroidPluginProject 47 | 48 | !ENTRY org.eclipse.ui 2 2 2014-12-01 23:53:07.735 49 | !MESSAGE Invalid property category path: ValidationPropertiesPage (bundle: org.eclipse.wst.xml.ui, propertyPage: org.eclipse.wst.xml.ui.propertyPage.project.validation) 50 | -------------------------------------------------------------------------------- /AndroidPluginProject/bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f040000 2 | int anim abc_fade_out 0x7f040001 3 | int anim abc_slide_in_bottom 0x7f040002 4 | int anim abc_slide_in_top 0x7f040003 5 | int anim abc_slide_out_bottom 0x7f040004 6 | int anim abc_slide_out_top 0x7f040005 7 | int attr actionBarDivider 0x7f01000f 8 | int attr actionBarItemBackground 0x7f010010 9 | int attr actionBarSize 0x7f01000e 10 | int attr actionBarSplitStyle 0x7f01000c 11 | int attr actionBarStyle 0x7f01000b 12 | int attr actionBarTabBarStyle 0x7f010008 13 | int attr actionBarTabStyle 0x7f010007 14 | int attr actionBarTabTextStyle 0x7f010009 15 | int attr actionBarWidgetTheme 0x7f01000d 16 | int attr actionButtonStyle 0x7f010016 17 | int attr actionDropDownStyle 0x7f010047 18 | int attr actionLayout 0x7f01004e 19 | int attr actionMenuTextAppearance 0x7f010011 20 | int attr actionMenuTextColor 0x7f010012 21 | int attr actionModeBackground 0x7f01003c 22 | int attr actionModeCloseButtonStyle 0x7f01003b 23 | int attr actionModeCloseDrawable 0x7f01003e 24 | int attr actionModeCopyDrawable 0x7f010040 25 | int attr actionModeCutDrawable 0x7f01003f 26 | int attr actionModeFindDrawable 0x7f010044 27 | int attr actionModePasteDrawable 0x7f010041 28 | int attr actionModePopupWindowStyle 0x7f010046 29 | int attr actionModeSelectAllDrawable 0x7f010042 30 | int attr actionModeShareDrawable 0x7f010043 31 | int attr actionModeSplitBackground 0x7f01003d 32 | int attr actionModeStyle 0x7f01003a 33 | int attr actionModeWebSearchDrawable 0x7f010045 34 | int attr actionOverflowButtonStyle 0x7f01000a 35 | int attr actionProviderClass 0x7f010050 36 | int attr actionViewClass 0x7f01004f 37 | int attr activityChooserViewStyle 0x7f01006c 38 | int attr background 0x7f01002f 39 | int attr backgroundSplit 0x7f010031 40 | int attr backgroundStacked 0x7f010030 41 | int attr buttonBarButtonStyle 0x7f010018 42 | int attr buttonBarStyle 0x7f010017 43 | int attr customNavigationLayout 0x7f010032 44 | int attr disableChildrenWhenDisabled 0x7f010054 45 | int attr displayOptions 0x7f010028 46 | int attr divider 0x7f01002e 47 | int attr dividerHorizontal 0x7f01001b 48 | int attr dividerPadding 0x7f010056 49 | int attr dividerVertical 0x7f01001a 50 | int attr dropDownListViewStyle 0x7f010021 51 | int attr dropdownListPreferredItemHeight 0x7f010048 52 | int attr expandActivityOverflowButtonDrawable 0x7f01006b 53 | int attr height 0x7f010026 54 | int attr homeAsUpIndicator 0x7f010013 55 | int attr homeLayout 0x7f010033 56 | int attr icon 0x7f01002c 57 | int attr iconifiedByDefault 0x7f01005a 58 | int attr indeterminateProgressStyle 0x7f010035 59 | int attr initialActivityCount 0x7f01006a 60 | int attr isLightTheme 0x7f010059 61 | int attr itemPadding 0x7f010037 62 | int attr listChoiceBackgroundIndicator 0x7f01004c 63 | int attr listPopupWindowStyle 0x7f010022 64 | int attr listPreferredItemHeight 0x7f01001c 65 | int attr listPreferredItemHeightLarge 0x7f01001e 66 | int attr listPreferredItemHeightSmall 0x7f01001d 67 | int attr listPreferredItemPaddingLeft 0x7f01001f 68 | int attr listPreferredItemPaddingRight 0x7f010020 69 | int attr logo 0x7f01002d 70 | int attr navigationMode 0x7f010027 71 | int attr paddingEnd 0x7f010039 72 | int attr paddingStart 0x7f010038 73 | int attr panelMenuListTheme 0x7f01004b 74 | int attr panelMenuListWidth 0x7f01004a 75 | int attr popupMenuStyle 0x7f010049 76 | int attr popupPromptView 0x7f010053 77 | int attr progressBarPadding 0x7f010036 78 | int attr progressBarStyle 0x7f010034 79 | int attr prompt 0x7f010051 80 | int attr queryHint 0x7f01005b 81 | int attr searchDropdownBackground 0x7f01005c 82 | int attr searchResultListItemHeight 0x7f010065 83 | int attr searchViewAutoCompleteTextView 0x7f010069 84 | int attr searchViewCloseIcon 0x7f01005d 85 | int attr searchViewEditQuery 0x7f010061 86 | int attr searchViewEditQueryBackground 0x7f010062 87 | int attr searchViewGoIcon 0x7f01005e 88 | int attr searchViewSearchIcon 0x7f01005f 89 | int attr searchViewTextField 0x7f010063 90 | int attr searchViewTextFieldRight 0x7f010064 91 | int attr searchViewVoiceIcon 0x7f010060 92 | int attr selectableItemBackground 0x7f010019 93 | int attr showAsAction 0x7f01004d 94 | int attr showDividers 0x7f010055 95 | int attr spinnerDropDownItemStyle 0x7f010058 96 | int attr spinnerMode 0x7f010052 97 | int attr spinnerStyle 0x7f010057 98 | int attr subtitle 0x7f010029 99 | int attr subtitleTextStyle 0x7f01002b 100 | int attr textAllCaps 0x7f01006d 101 | int attr textAppearanceLargePopupMenu 0x7f010014 102 | int attr textAppearanceListItem 0x7f010023 103 | int attr textAppearanceListItemSmall 0x7f010024 104 | int attr textAppearanceSearchResultSubtitle 0x7f010067 105 | int attr textAppearanceSearchResultTitle 0x7f010066 106 | int attr textAppearanceSmallPopupMenu 0x7f010015 107 | int attr textColorSearchUrl 0x7f010068 108 | int attr title 0x7f010025 109 | int attr titleTextStyle 0x7f01002a 110 | int attr windowActionBar 0x7f010000 111 | int attr windowActionBarOverlay 0x7f010001 112 | int attr windowFixedHeightMajor 0x7f010006 113 | int attr windowFixedHeightMinor 0x7f010004 114 | int attr windowFixedWidthMajor 0x7f010003 115 | int attr windowFixedWidthMinor 0x7f010005 116 | int attr windowSplitActionBar 0x7f010002 117 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f060000 118 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f060001 119 | int bool abc_config_actionMenuItemAllCaps 0x7f060005 120 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004 121 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003 122 | int bool abc_split_action_bar_is_narrow 0x7f060002 123 | int color abc_search_url_text_holo 0x7f070003 124 | int color abc_search_url_text_normal 0x7f070000 125 | int color abc_search_url_text_pressed 0x7f070002 126 | int color abc_search_url_text_selected 0x7f070001 127 | int dimen abc_action_bar_default_height 0x7f080002 128 | int dimen abc_action_bar_icon_vertical_padding 0x7f080003 129 | int dimen abc_action_bar_progress_bar_size 0x7f08000a 130 | int dimen abc_action_bar_stacked_max_height 0x7f080009 131 | int dimen abc_action_bar_stacked_tab_max_width 0x7f080001 132 | int dimen abc_action_bar_subtitle_bottom_margin 0x7f080007 133 | int dimen abc_action_bar_subtitle_text_size 0x7f080005 134 | int dimen abc_action_bar_subtitle_top_margin 0x7f080006 135 | int dimen abc_action_bar_title_text_size 0x7f080004 136 | int dimen abc_action_button_min_width 0x7f080008 137 | int dimen abc_config_prefDialogWidth 0x7f080000 138 | int dimen abc_dropdownitem_icon_width 0x7f080010 139 | int dimen abc_dropdownitem_text_padding_left 0x7f08000e 140 | int dimen abc_dropdownitem_text_padding_right 0x7f08000f 141 | int dimen abc_panel_menu_list_width 0x7f08000b 142 | int dimen abc_search_view_preferred_width 0x7f08000d 143 | int dimen abc_search_view_text_min_width 0x7f08000c 144 | int dimen activity_horizontal_margin 0x7f080015 145 | int dimen activity_vertical_margin 0x7f080016 146 | int dimen dialog_fixed_height_major 0x7f080013 147 | int dimen dialog_fixed_height_minor 0x7f080014 148 | int dimen dialog_fixed_width_major 0x7f080011 149 | int dimen dialog_fixed_width_minor 0x7f080012 150 | int drawable abc_ab_bottom_solid_dark_holo 0x7f020000 151 | int drawable abc_ab_bottom_solid_light_holo 0x7f020001 152 | int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002 153 | int drawable abc_ab_bottom_transparent_light_holo 0x7f020003 154 | int drawable abc_ab_share_pack_holo_dark 0x7f020004 155 | int drawable abc_ab_share_pack_holo_light 0x7f020005 156 | int drawable abc_ab_solid_dark_holo 0x7f020006 157 | int drawable abc_ab_solid_light_holo 0x7f020007 158 | int drawable abc_ab_stacked_solid_dark_holo 0x7f020008 159 | int drawable abc_ab_stacked_solid_light_holo 0x7f020009 160 | int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a 161 | int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b 162 | int drawable abc_ab_transparent_dark_holo 0x7f02000c 163 | int drawable abc_ab_transparent_light_holo 0x7f02000d 164 | int drawable abc_cab_background_bottom_holo_dark 0x7f02000e 165 | int drawable abc_cab_background_bottom_holo_light 0x7f02000f 166 | int drawable abc_cab_background_top_holo_dark 0x7f020010 167 | int drawable abc_cab_background_top_holo_light 0x7f020011 168 | int drawable abc_ic_ab_back_holo_dark 0x7f020012 169 | int drawable abc_ic_ab_back_holo_light 0x7f020013 170 | int drawable abc_ic_cab_done_holo_dark 0x7f020014 171 | int drawable abc_ic_cab_done_holo_light 0x7f020015 172 | int drawable abc_ic_clear 0x7f020016 173 | int drawable abc_ic_clear_disabled 0x7f020017 174 | int drawable abc_ic_clear_holo_light 0x7f020018 175 | int drawable abc_ic_clear_normal 0x7f020019 176 | int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a 177 | int drawable abc_ic_clear_search_api_holo_light 0x7f02001b 178 | int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c 179 | int drawable abc_ic_commit_search_api_holo_light 0x7f02001d 180 | int drawable abc_ic_go 0x7f02001e 181 | int drawable abc_ic_go_search_api_holo_light 0x7f02001f 182 | int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020 183 | int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021 184 | int drawable abc_ic_menu_share_holo_dark 0x7f020022 185 | int drawable abc_ic_menu_share_holo_light 0x7f020023 186 | int drawable abc_ic_search 0x7f020024 187 | int drawable abc_ic_search_api_holo_light 0x7f020025 188 | int drawable abc_ic_voice_search 0x7f020026 189 | int drawable abc_ic_voice_search_api_holo_light 0x7f020027 190 | int drawable abc_item_background_holo_dark 0x7f020028 191 | int drawable abc_item_background_holo_light 0x7f020029 192 | int drawable abc_list_divider_holo_dark 0x7f02002a 193 | int drawable abc_list_divider_holo_light 0x7f02002b 194 | int drawable abc_list_focused_holo 0x7f02002c 195 | int drawable abc_list_longpressed_holo 0x7f02002d 196 | int drawable abc_list_pressed_holo_dark 0x7f02002e 197 | int drawable abc_list_pressed_holo_light 0x7f02002f 198 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020030 199 | int drawable abc_list_selector_background_transition_holo_light 0x7f020031 200 | int drawable abc_list_selector_disabled_holo_dark 0x7f020032 201 | int drawable abc_list_selector_disabled_holo_light 0x7f020033 202 | int drawable abc_list_selector_holo_dark 0x7f020034 203 | int drawable abc_list_selector_holo_light 0x7f020035 204 | int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036 205 | int drawable abc_menu_dropdown_panel_holo_light 0x7f020037 206 | int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038 207 | int drawable abc_menu_hardkey_panel_holo_light 0x7f020039 208 | int drawable abc_search_dropdown_dark 0x7f02003a 209 | int drawable abc_search_dropdown_light 0x7f02003b 210 | int drawable abc_spinner_ab_default_holo_dark 0x7f02003c 211 | int drawable abc_spinner_ab_default_holo_light 0x7f02003d 212 | int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e 213 | int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f 214 | int drawable abc_spinner_ab_focused_holo_dark 0x7f020040 215 | int drawable abc_spinner_ab_focused_holo_light 0x7f020041 216 | int drawable abc_spinner_ab_holo_dark 0x7f020042 217 | int drawable abc_spinner_ab_holo_light 0x7f020043 218 | int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044 219 | int drawable abc_spinner_ab_pressed_holo_light 0x7f020045 220 | int drawable abc_tab_indicator_ab_holo 0x7f020046 221 | int drawable abc_tab_selected_focused_holo 0x7f020047 222 | int drawable abc_tab_selected_holo 0x7f020048 223 | int drawable abc_tab_selected_pressed_holo 0x7f020049 224 | int drawable abc_tab_unselected_pressed_holo 0x7f02004a 225 | int drawable abc_textfield_search_default_holo_dark 0x7f02004b 226 | int drawable abc_textfield_search_default_holo_light 0x7f02004c 227 | int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d 228 | int drawable abc_textfield_search_right_default_holo_light 0x7f02004e 229 | int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f 230 | int drawable abc_textfield_search_right_selected_holo_light 0x7f020050 231 | int drawable abc_textfield_search_selected_holo_dark 0x7f020051 232 | int drawable abc_textfield_search_selected_holo_light 0x7f020052 233 | int drawable abc_textfield_searchview_holo_dark 0x7f020053 234 | int drawable abc_textfield_searchview_holo_light 0x7f020054 235 | int drawable abc_textfield_searchview_right_holo_dark 0x7f020055 236 | int drawable abc_textfield_searchview_right_holo_light 0x7f020056 237 | int drawable ic_launcher 0x7f020057 238 | int id action_bar 0x7f05001c 239 | int id action_bar_activity_content 0x7f050015 240 | int id action_bar_container 0x7f05001b 241 | int id action_bar_overlay_layout 0x7f05001f 242 | int id action_bar_root 0x7f05001a 243 | int id action_bar_subtitle 0x7f050023 244 | int id action_bar_title 0x7f050022 245 | int id action_context_bar 0x7f05001d 246 | int id action_menu_divider 0x7f050016 247 | int id action_menu_presenter 0x7f050017 248 | int id action_mode_close_button 0x7f050024 249 | int id action_settings 0x7f05003c 250 | int id activity_chooser_view_content 0x7f050025 251 | int id always 0x7f05000b 252 | int id beginning 0x7f050011 253 | int id checkbox 0x7f05002d 254 | int id collapseActionView 0x7f05000d 255 | int id default_activity_button 0x7f050028 256 | int id dialog 0x7f05000e 257 | int id disableHome 0x7f050008 258 | int id dropdown 0x7f05000f 259 | int id edit_query 0x7f050030 260 | int id end 0x7f050013 261 | int id expand_activities_button 0x7f050026 262 | int id expanded_menu 0x7f05002c 263 | int id home 0x7f050014 264 | int id homeAsUp 0x7f050005 265 | int id icon 0x7f05002a 266 | int id ifRoom 0x7f05000a 267 | int id image 0x7f050027 268 | int id listMode 0x7f050001 269 | int id list_item 0x7f050029 270 | int id middle 0x7f050012 271 | int id never 0x7f050009 272 | int id none 0x7f050010 273 | int id normal 0x7f050000 274 | int id progress_circular 0x7f050018 275 | int id progress_horizontal 0x7f050019 276 | int id radio 0x7f05002f 277 | int id search_badge 0x7f050032 278 | int id search_bar 0x7f050031 279 | int id search_button 0x7f050033 280 | int id search_close_btn 0x7f050038 281 | int id search_edit_frame 0x7f050034 282 | int id search_go_btn 0x7f05003a 283 | int id search_mag_icon 0x7f050035 284 | int id search_plate 0x7f050036 285 | int id search_src_text 0x7f050037 286 | int id search_voice_btn 0x7f05003b 287 | int id shortcut 0x7f05002e 288 | int id showCustom 0x7f050007 289 | int id showHome 0x7f050004 290 | int id showTitle 0x7f050006 291 | int id split_action_bar 0x7f05001e 292 | int id submit_area 0x7f050039 293 | int id tabMode 0x7f050002 294 | int id title 0x7f05002b 295 | int id top_action_bar 0x7f050020 296 | int id up 0x7f050021 297 | int id useLogo 0x7f050003 298 | int id withText 0x7f05000c 299 | int integer abc_max_action_buttons 0x7f090000 300 | int layout abc_action_bar_decor 0x7f030000 301 | int layout abc_action_bar_decor_include 0x7f030001 302 | int layout abc_action_bar_decor_overlay 0x7f030002 303 | int layout abc_action_bar_home 0x7f030003 304 | int layout abc_action_bar_tab 0x7f030004 305 | int layout abc_action_bar_tabbar 0x7f030005 306 | int layout abc_action_bar_title_item 0x7f030006 307 | int layout abc_action_bar_view_list_nav_layout 0x7f030007 308 | int layout abc_action_menu_item_layout 0x7f030008 309 | int layout abc_action_menu_layout 0x7f030009 310 | int layout abc_action_mode_bar 0x7f03000a 311 | int layout abc_action_mode_close_item 0x7f03000b 312 | int layout abc_activity_chooser_view 0x7f03000c 313 | int layout abc_activity_chooser_view_include 0x7f03000d 314 | int layout abc_activity_chooser_view_list_item 0x7f03000e 315 | int layout abc_expanded_menu_layout 0x7f03000f 316 | int layout abc_list_menu_item_checkbox 0x7f030010 317 | int layout abc_list_menu_item_icon 0x7f030011 318 | int layout abc_list_menu_item_layout 0x7f030012 319 | int layout abc_list_menu_item_radio 0x7f030013 320 | int layout abc_popup_menu_item_layout 0x7f030014 321 | int layout abc_search_dropdown_item_icons_2line 0x7f030015 322 | int layout abc_search_view 0x7f030016 323 | int layout abc_simple_decor 0x7f030017 324 | int layout activity_main 0x7f030018 325 | int layout support_simple_spinner_dropdown_item 0x7f030019 326 | int menu main 0x7f0c0000 327 | int string abc_action_bar_home_description 0x7f0a0001 328 | int string abc_action_bar_up_description 0x7f0a0002 329 | int string abc_action_menu_overflow_description 0x7f0a0003 330 | int string abc_action_mode_done 0x7f0a0000 331 | int string abc_activity_chooser_view_see_all 0x7f0a000a 332 | int string abc_activitychooserview_choose_application 0x7f0a0009 333 | int string abc_searchview_description_clear 0x7f0a0006 334 | int string abc_searchview_description_query 0x7f0a0005 335 | int string abc_searchview_description_search 0x7f0a0004 336 | int string abc_searchview_description_submit 0x7f0a0007 337 | int string abc_searchview_description_voice 0x7f0a0008 338 | int string abc_shareactionprovider_share_with 0x7f0a000c 339 | int string abc_shareactionprovider_share_with_application 0x7f0a000b 340 | int string action_settings 0x7f0a000f 341 | int string app_name 0x7f0a000d 342 | int string hello_world 0x7f0a000e 343 | int style AppBaseTheme 0x7f0b008b 344 | int style AppTheme 0x7f0b008c 345 | int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0063 346 | int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b006d 347 | int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b006f 348 | int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b006e 349 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0069 350 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b006a 351 | int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0070 352 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0072 353 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b0071 354 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b006b 355 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b006c 356 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0035 357 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0034 358 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0030 359 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0031 360 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0033 361 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0032 362 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b001a 363 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0006 364 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0008 365 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0005 366 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0007 367 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b001e 368 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0020 369 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001d 370 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001f 371 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b0054 372 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b0056 373 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b0058 374 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b0055 375 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0057 376 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0051 377 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0053 378 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0050 379 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0052 380 | int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0061 381 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0021 382 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b002e 383 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b002f 384 | int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0062 385 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0028 386 | int style Theme_AppCompat 0x7f0b0077 387 | int style Theme_AppCompat_Base_CompactMenu 0x7f0b0083 388 | int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b0084 389 | int style Theme_AppCompat_CompactMenu 0x7f0b007c 390 | int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b007d 391 | int style Theme_AppCompat_DialogWhenLarge 0x7f0b007a 392 | int style Theme_AppCompat_Light 0x7f0b0078 393 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0079 394 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b007b 395 | int style Theme_Base 0x7f0b007e 396 | int style Theme_Base_AppCompat 0x7f0b0080 397 | int style Theme_Base_AppCompat_Dialog_FixedSize 0x7f0b0087 398 | int style Theme_Base_AppCompat_Dialog_Light_FixedSize 0x7f0b0088 399 | int style Theme_Base_AppCompat_DialogWhenLarge 0x7f0b0085 400 | int style Theme_Base_AppCompat_DialogWhenLarge_Base 0x7f0b0089 401 | int style Theme_Base_AppCompat_Light 0x7f0b0081 402 | int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0082 403 | int style Theme_Base_AppCompat_Light_DialogWhenLarge 0x7f0b0086 404 | int style Theme_Base_AppCompat_Light_DialogWhenLarge_Base 0x7f0b008a 405 | int style Theme_Base_Light 0x7f0b007f 406 | int style Widget_AppCompat_ActionBar 0x7f0b0000 407 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 408 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0011 409 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0017 410 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b0014 411 | int style Widget_AppCompat_ActionButton 0x7f0b000b 412 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000d 413 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000f 414 | int style Widget_AppCompat_ActionMode 0x7f0b001b 415 | int style Widget_AppCompat_ActivityChooserView 0x7f0b0038 416 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0036 417 | int style Widget_AppCompat_Base_ActionBar 0x7f0b003a 418 | int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b003c 419 | int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0045 420 | int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b004b 421 | int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048 422 | int style Widget_AppCompat_Base_ActionButton 0x7f0b003f 423 | int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b0041 424 | int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b0043 425 | int style Widget_AppCompat_Base_ActionMode 0x7f0b004e 426 | int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b0075 427 | int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b0073 428 | int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b005d 429 | int style Widget_AppCompat_Base_ListPopupWindow 0x7f0b0065 430 | int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b005f 431 | int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0064 432 | int style Widget_AppCompat_Base_PopupMenu 0x7f0b0067 433 | int style Widget_AppCompat_Base_ProgressBar 0x7f0b005a 434 | int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0059 435 | int style Widget_AppCompat_Base_Spinner 0x7f0b005b 436 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0024 437 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 438 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 439 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0004 440 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0012 441 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0013 442 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0018 443 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0019 444 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0015 445 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0016 446 | int style Widget_AppCompat_Light_ActionButton 0x7f0b000c 447 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b000e 448 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0010 449 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b001c 450 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0039 451 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0037 452 | int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b003b 453 | int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b003d 454 | int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b003e 455 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0046 456 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b0047 457 | int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b004c 458 | int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b004d 459 | int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b0049 460 | int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b004a 461 | int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b0040 462 | int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0042 463 | int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0044 464 | int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b004f 465 | int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0076 466 | int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074 467 | int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b005e 468 | int style Widget_AppCompat_Light_Base_ListPopupWindow 0x7f0b0066 469 | int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0060 470 | int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0068 471 | int style Widget_AppCompat_Light_Base_Spinner 0x7f0b005c 472 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0025 473 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b002a 474 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b0027 475 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b002c 476 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0023 477 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0029 478 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0026 479 | int style Widget_AppCompat_ListView_Menu 0x7f0b002d 480 | int style Widget_AppCompat_PopupMenu 0x7f0b002b 481 | int style Widget_AppCompat_ProgressBar 0x7f0b000a 482 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0009 483 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0022 484 | int[] styleable ActionBar { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 } 485 | int styleable ActionBar_background 10 486 | int styleable ActionBar_backgroundSplit 12 487 | int styleable ActionBar_backgroundStacked 11 488 | int styleable ActionBar_customNavigationLayout 13 489 | int styleable ActionBar_displayOptions 3 490 | int styleable ActionBar_divider 9 491 | int styleable ActionBar_height 1 492 | int styleable ActionBar_homeLayout 14 493 | int styleable ActionBar_icon 7 494 | int styleable ActionBar_indeterminateProgressStyle 16 495 | int styleable ActionBar_itemPadding 18 496 | int styleable ActionBar_logo 8 497 | int styleable ActionBar_navigationMode 2 498 | int styleable ActionBar_progressBarPadding 17 499 | int styleable ActionBar_progressBarStyle 15 500 | int styleable ActionBar_subtitle 4 501 | int styleable ActionBar_subtitleTextStyle 6 502 | int styleable ActionBar_title 0 503 | int styleable ActionBar_titleTextStyle 5 504 | int[] styleable ActionBarLayout { 0x010100b3 } 505 | int styleable ActionBarLayout_android_layout_gravity 0 506 | int[] styleable ActionBarWindow { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 } 507 | int styleable ActionBarWindow_windowActionBar 0 508 | int styleable ActionBarWindow_windowActionBarOverlay 1 509 | int styleable ActionBarWindow_windowFixedHeightMajor 6 510 | int styleable ActionBarWindow_windowFixedHeightMinor 4 511 | int styleable ActionBarWindow_windowFixedWidthMajor 3 512 | int styleable ActionBarWindow_windowFixedWidthMinor 5 513 | int styleable ActionBarWindow_windowSplitActionBar 2 514 | int[] styleable ActionMenuItemView { 0x0101013f } 515 | int styleable ActionMenuItemView_android_minWidth 0 516 | int[] styleable ActionMenuView { } 517 | int[] styleable ActionMode { 0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f, 0x7f010031 } 518 | int styleable ActionMode_background 3 519 | int styleable ActionMode_backgroundSplit 4 520 | int styleable ActionMode_height 0 521 | int styleable ActionMode_subtitleTextStyle 2 522 | int styleable ActionMode_titleTextStyle 1 523 | int[] styleable ActivityChooserView { 0x7f01006a, 0x7f01006b } 524 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 525 | int styleable ActivityChooserView_initialActivityCount 0 526 | int[] styleable CompatTextView { 0x7f01006d } 527 | int styleable CompatTextView_textAllCaps 0 528 | int[] styleable LinearLayoutICS { 0x7f01002e, 0x7f010055, 0x7f010056 } 529 | int styleable LinearLayoutICS_divider 0 530 | int styleable LinearLayoutICS_dividerPadding 2 531 | int styleable LinearLayoutICS_showDividers 1 532 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 533 | int styleable MenuGroup_android_checkableBehavior 5 534 | int styleable MenuGroup_android_enabled 0 535 | int styleable MenuGroup_android_id 1 536 | int styleable MenuGroup_android_menuCategory 3 537 | int styleable MenuGroup_android_orderInCategory 4 538 | int styleable MenuGroup_android_visible 2 539 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 } 540 | int styleable MenuItem_actionLayout 14 541 | int styleable MenuItem_actionProviderClass 16 542 | int styleable MenuItem_actionViewClass 15 543 | int styleable MenuItem_android_alphabeticShortcut 9 544 | int styleable MenuItem_android_checkable 11 545 | int styleable MenuItem_android_checked 3 546 | int styleable MenuItem_android_enabled 1 547 | int styleable MenuItem_android_icon 0 548 | int styleable MenuItem_android_id 2 549 | int styleable MenuItem_android_menuCategory 5 550 | int styleable MenuItem_android_numericShortcut 10 551 | int styleable MenuItem_android_onClick 12 552 | int styleable MenuItem_android_orderInCategory 6 553 | int styleable MenuItem_android_title 7 554 | int styleable MenuItem_android_titleCondensed 8 555 | int styleable MenuItem_android_visible 4 556 | int styleable MenuItem_showAsAction 13 557 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010438 } 558 | int styleable MenuView_android_headerBackground 4 559 | int styleable MenuView_android_horizontalDivider 2 560 | int styleable MenuView_android_itemBackground 5 561 | int styleable MenuView_android_itemIconDisabledAlpha 6 562 | int styleable MenuView_android_itemTextAppearance 1 563 | int styleable MenuView_android_preserveIconSpacing 7 564 | int styleable MenuView_android_verticalDivider 3 565 | int styleable MenuView_android_windowAnimationStyle 0 566 | int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f01005a, 0x7f01005b } 567 | int styleable SearchView_android_imeOptions 2 568 | int styleable SearchView_android_inputType 1 569 | int styleable SearchView_android_maxWidth 0 570 | int styleable SearchView_iconifiedByDefault 3 571 | int styleable SearchView_queryHint 4 572 | int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 } 573 | int styleable Spinner_android_dropDownHorizontalOffset 4 574 | int styleable Spinner_android_dropDownSelector 1 575 | int styleable Spinner_android_dropDownVerticalOffset 5 576 | int styleable Spinner_android_dropDownWidth 3 577 | int styleable Spinner_android_gravity 0 578 | int styleable Spinner_android_popupBackground 2 579 | int styleable Spinner_disableChildrenWhenDisabled 9 580 | int styleable Spinner_popupPromptView 8 581 | int styleable Spinner_prompt 6 582 | int styleable Spinner_spinnerMode 7 583 | int[] styleable Theme { 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c } 584 | int styleable Theme_actionDropDownStyle 0 585 | int styleable Theme_dropdownListPreferredItemHeight 1 586 | int styleable Theme_listChoiceBackgroundIndicator 5 587 | int styleable Theme_panelMenuListTheme 4 588 | int styleable Theme_panelMenuListWidth 3 589 | int styleable Theme_popupMenuStyle 2 590 | int[] styleable View { 0x010100da, 0x7f010038, 0x7f010039 } 591 | int styleable View_android_focusable 0 592 | int styleable View_paddingEnd 2 593 | int styleable View_paddingStart 1 594 | -------------------------------------------------------------------------------- /AndroidPluginProject/gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.v7.appcompat; 8 | 9 | public final class R { 10 | public static final class anim { 11 | public static final int abc_fade_in = 0x7f040000; 12 | public static final int abc_fade_out = 0x7f040001; 13 | public static final int abc_slide_in_bottom = 0x7f040002; 14 | public static final int abc_slide_in_top = 0x7f040003; 15 | public static final int abc_slide_out_bottom = 0x7f040004; 16 | public static final int abc_slide_out_top = 0x7f040005; 17 | } 18 | public static final class attr { 19 | public static final int actionBarDivider = 0x7f01000f; 20 | public static final int actionBarItemBackground = 0x7f010010; 21 | public static final int actionBarSize = 0x7f01000e; 22 | public static final int actionBarSplitStyle = 0x7f01000c; 23 | public static final int actionBarStyle = 0x7f01000b; 24 | public static final int actionBarTabBarStyle = 0x7f010008; 25 | public static final int actionBarTabStyle = 0x7f010007; 26 | public static final int actionBarTabTextStyle = 0x7f010009; 27 | public static final int actionBarWidgetTheme = 0x7f01000d; 28 | public static final int actionButtonStyle = 0x7f010016; 29 | public static final int actionDropDownStyle = 0x7f010047; 30 | public static final int actionLayout = 0x7f01004e; 31 | public static final int actionMenuTextAppearance = 0x7f010011; 32 | public static final int actionMenuTextColor = 0x7f010012; 33 | public static final int actionModeBackground = 0x7f01003c; 34 | public static final int actionModeCloseButtonStyle = 0x7f01003b; 35 | public static final int actionModeCloseDrawable = 0x7f01003e; 36 | public static final int actionModeCopyDrawable = 0x7f010040; 37 | public static final int actionModeCutDrawable = 0x7f01003f; 38 | public static final int actionModeFindDrawable = 0x7f010044; 39 | public static final int actionModePasteDrawable = 0x7f010041; 40 | public static final int actionModePopupWindowStyle = 0x7f010046; 41 | public static final int actionModeSelectAllDrawable = 0x7f010042; 42 | public static final int actionModeShareDrawable = 0x7f010043; 43 | public static final int actionModeSplitBackground = 0x7f01003d; 44 | public static final int actionModeStyle = 0x7f01003a; 45 | public static final int actionModeWebSearchDrawable = 0x7f010045; 46 | public static final int actionOverflowButtonStyle = 0x7f01000a; 47 | public static final int actionProviderClass = 0x7f010050; 48 | public static final int actionViewClass = 0x7f01004f; 49 | public static final int activityChooserViewStyle = 0x7f01006c; 50 | public static final int background = 0x7f01002f; 51 | public static final int backgroundSplit = 0x7f010031; 52 | public static final int backgroundStacked = 0x7f010030; 53 | public static final int buttonBarButtonStyle = 0x7f010018; 54 | public static final int buttonBarStyle = 0x7f010017; 55 | public static final int customNavigationLayout = 0x7f010032; 56 | public static final int disableChildrenWhenDisabled = 0x7f010054; 57 | public static final int displayOptions = 0x7f010028; 58 | public static final int divider = 0x7f01002e; 59 | public static final int dividerHorizontal = 0x7f01001b; 60 | public static final int dividerPadding = 0x7f010056; 61 | public static final int dividerVertical = 0x7f01001a; 62 | public static final int dropDownListViewStyle = 0x7f010021; 63 | public static final int dropdownListPreferredItemHeight = 0x7f010048; 64 | public static final int expandActivityOverflowButtonDrawable = 0x7f01006b; 65 | public static final int height = 0x7f010026; 66 | public static final int homeAsUpIndicator = 0x7f010013; 67 | public static final int homeLayout = 0x7f010033; 68 | public static final int icon = 0x7f01002c; 69 | public static final int iconifiedByDefault = 0x7f01005a; 70 | public static final int indeterminateProgressStyle = 0x7f010035; 71 | public static final int initialActivityCount = 0x7f01006a; 72 | public static final int isLightTheme = 0x7f010059; 73 | public static final int itemPadding = 0x7f010037; 74 | public static final int listChoiceBackgroundIndicator = 0x7f01004c; 75 | public static final int listPopupWindowStyle = 0x7f010022; 76 | public static final int listPreferredItemHeight = 0x7f01001c; 77 | public static final int listPreferredItemHeightLarge = 0x7f01001e; 78 | public static final int listPreferredItemHeightSmall = 0x7f01001d; 79 | public static final int listPreferredItemPaddingLeft = 0x7f01001f; 80 | public static final int listPreferredItemPaddingRight = 0x7f010020; 81 | public static final int logo = 0x7f01002d; 82 | public static final int navigationMode = 0x7f010027; 83 | public static final int paddingEnd = 0x7f010039; 84 | public static final int paddingStart = 0x7f010038; 85 | public static final int panelMenuListTheme = 0x7f01004b; 86 | public static final int panelMenuListWidth = 0x7f01004a; 87 | public static final int popupMenuStyle = 0x7f010049; 88 | public static final int popupPromptView = 0x7f010053; 89 | public static final int progressBarPadding = 0x7f010036; 90 | public static final int progressBarStyle = 0x7f010034; 91 | public static final int prompt = 0x7f010051; 92 | public static final int queryHint = 0x7f01005b; 93 | public static final int searchDropdownBackground = 0x7f01005c; 94 | public static final int searchResultListItemHeight = 0x7f010065; 95 | public static final int searchViewAutoCompleteTextView = 0x7f010069; 96 | public static final int searchViewCloseIcon = 0x7f01005d; 97 | public static final int searchViewEditQuery = 0x7f010061; 98 | public static final int searchViewEditQueryBackground = 0x7f010062; 99 | public static final int searchViewGoIcon = 0x7f01005e; 100 | public static final int searchViewSearchIcon = 0x7f01005f; 101 | public static final int searchViewTextField = 0x7f010063; 102 | public static final int searchViewTextFieldRight = 0x7f010064; 103 | public static final int searchViewVoiceIcon = 0x7f010060; 104 | public static final int selectableItemBackground = 0x7f010019; 105 | public static final int showAsAction = 0x7f01004d; 106 | public static final int showDividers = 0x7f010055; 107 | public static final int spinnerDropDownItemStyle = 0x7f010058; 108 | public static final int spinnerMode = 0x7f010052; 109 | public static final int spinnerStyle = 0x7f010057; 110 | public static final int subtitle = 0x7f010029; 111 | public static final int subtitleTextStyle = 0x7f01002b; 112 | public static final int textAllCaps = 0x7f01006d; 113 | public static final int textAppearanceLargePopupMenu = 0x7f010014; 114 | public static final int textAppearanceListItem = 0x7f010023; 115 | public static final int textAppearanceListItemSmall = 0x7f010024; 116 | public static final int textAppearanceSearchResultSubtitle = 0x7f010067; 117 | public static final int textAppearanceSearchResultTitle = 0x7f010066; 118 | public static final int textAppearanceSmallPopupMenu = 0x7f010015; 119 | public static final int textColorSearchUrl = 0x7f010068; 120 | public static final int title = 0x7f010025; 121 | public static final int titleTextStyle = 0x7f01002a; 122 | public static final int windowActionBar = 0x7f010000; 123 | public static final int windowActionBarOverlay = 0x7f010001; 124 | public static final int windowFixedHeightMajor = 0x7f010006; 125 | public static final int windowFixedHeightMinor = 0x7f010004; 126 | public static final int windowFixedWidthMajor = 0x7f010003; 127 | public static final int windowFixedWidthMinor = 0x7f010005; 128 | public static final int windowSplitActionBar = 0x7f010002; 129 | } 130 | public static final class bool { 131 | public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060000; 132 | public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060001; 133 | public static final int abc_config_actionMenuItemAllCaps = 0x7f060005; 134 | public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060004; 135 | public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060003; 136 | public static final int abc_split_action_bar_is_narrow = 0x7f060002; 137 | } 138 | public static final class color { 139 | public static final int abc_search_url_text_holo = 0x7f070003; 140 | public static final int abc_search_url_text_normal = 0x7f070000; 141 | public static final int abc_search_url_text_pressed = 0x7f070002; 142 | public static final int abc_search_url_text_selected = 0x7f070001; 143 | } 144 | public static final class dimen { 145 | public static final int abc_action_bar_default_height = 0x7f080002; 146 | public static final int abc_action_bar_icon_vertical_padding = 0x7f080003; 147 | public static final int abc_action_bar_progress_bar_size = 0x7f08000a; 148 | public static final int abc_action_bar_stacked_max_height = 0x7f080009; 149 | public static final int abc_action_bar_stacked_tab_max_width = 0x7f080001; 150 | public static final int abc_action_bar_subtitle_bottom_margin = 0x7f080007; 151 | public static final int abc_action_bar_subtitle_text_size = 0x7f080005; 152 | public static final int abc_action_bar_subtitle_top_margin = 0x7f080006; 153 | public static final int abc_action_bar_title_text_size = 0x7f080004; 154 | public static final int abc_action_button_min_width = 0x7f080008; 155 | public static final int abc_config_prefDialogWidth = 0x7f080000; 156 | public static final int abc_dropdownitem_icon_width = 0x7f080010; 157 | public static final int abc_dropdownitem_text_padding_left = 0x7f08000e; 158 | public static final int abc_dropdownitem_text_padding_right = 0x7f08000f; 159 | public static final int abc_panel_menu_list_width = 0x7f08000b; 160 | public static final int abc_search_view_preferred_width = 0x7f08000d; 161 | public static final int abc_search_view_text_min_width = 0x7f08000c; 162 | public static final int dialog_fixed_height_major = 0x7f080013; 163 | public static final int dialog_fixed_height_minor = 0x7f080014; 164 | public static final int dialog_fixed_width_major = 0x7f080011; 165 | public static final int dialog_fixed_width_minor = 0x7f080012; 166 | } 167 | public static final class drawable { 168 | public static final int abc_ab_bottom_solid_dark_holo = 0x7f020000; 169 | public static final int abc_ab_bottom_solid_light_holo = 0x7f020001; 170 | public static final int abc_ab_bottom_transparent_dark_holo = 0x7f020002; 171 | public static final int abc_ab_bottom_transparent_light_holo = 0x7f020003; 172 | public static final int abc_ab_share_pack_holo_dark = 0x7f020004; 173 | public static final int abc_ab_share_pack_holo_light = 0x7f020005; 174 | public static final int abc_ab_solid_dark_holo = 0x7f020006; 175 | public static final int abc_ab_solid_light_holo = 0x7f020007; 176 | public static final int abc_ab_stacked_solid_dark_holo = 0x7f020008; 177 | public static final int abc_ab_stacked_solid_light_holo = 0x7f020009; 178 | public static final int abc_ab_stacked_transparent_dark_holo = 0x7f02000a; 179 | public static final int abc_ab_stacked_transparent_light_holo = 0x7f02000b; 180 | public static final int abc_ab_transparent_dark_holo = 0x7f02000c; 181 | public static final int abc_ab_transparent_light_holo = 0x7f02000d; 182 | public static final int abc_cab_background_bottom_holo_dark = 0x7f02000e; 183 | public static final int abc_cab_background_bottom_holo_light = 0x7f02000f; 184 | public static final int abc_cab_background_top_holo_dark = 0x7f020010; 185 | public static final int abc_cab_background_top_holo_light = 0x7f020011; 186 | public static final int abc_ic_ab_back_holo_dark = 0x7f020012; 187 | public static final int abc_ic_ab_back_holo_light = 0x7f020013; 188 | public static final int abc_ic_cab_done_holo_dark = 0x7f020014; 189 | public static final int abc_ic_cab_done_holo_light = 0x7f020015; 190 | public static final int abc_ic_clear = 0x7f020016; 191 | public static final int abc_ic_clear_disabled = 0x7f020017; 192 | public static final int abc_ic_clear_holo_light = 0x7f020018; 193 | public static final int abc_ic_clear_normal = 0x7f020019; 194 | public static final int abc_ic_clear_search_api_disabled_holo_light = 0x7f02001a; 195 | public static final int abc_ic_clear_search_api_holo_light = 0x7f02001b; 196 | public static final int abc_ic_commit_search_api_holo_dark = 0x7f02001c; 197 | public static final int abc_ic_commit_search_api_holo_light = 0x7f02001d; 198 | public static final int abc_ic_go = 0x7f02001e; 199 | public static final int abc_ic_go_search_api_holo_light = 0x7f02001f; 200 | public static final int abc_ic_menu_moreoverflow_normal_holo_dark = 0x7f020020; 201 | public static final int abc_ic_menu_moreoverflow_normal_holo_light = 0x7f020021; 202 | public static final int abc_ic_menu_share_holo_dark = 0x7f020022; 203 | public static final int abc_ic_menu_share_holo_light = 0x7f020023; 204 | public static final int abc_ic_search = 0x7f020024; 205 | public static final int abc_ic_search_api_holo_light = 0x7f020025; 206 | public static final int abc_ic_voice_search = 0x7f020026; 207 | public static final int abc_ic_voice_search_api_holo_light = 0x7f020027; 208 | public static final int abc_item_background_holo_dark = 0x7f020028; 209 | public static final int abc_item_background_holo_light = 0x7f020029; 210 | public static final int abc_list_divider_holo_dark = 0x7f02002a; 211 | public static final int abc_list_divider_holo_light = 0x7f02002b; 212 | public static final int abc_list_focused_holo = 0x7f02002c; 213 | public static final int abc_list_longpressed_holo = 0x7f02002d; 214 | public static final int abc_list_pressed_holo_dark = 0x7f02002e; 215 | public static final int abc_list_pressed_holo_light = 0x7f02002f; 216 | public static final int abc_list_selector_background_transition_holo_dark = 0x7f020030; 217 | public static final int abc_list_selector_background_transition_holo_light = 0x7f020031; 218 | public static final int abc_list_selector_disabled_holo_dark = 0x7f020032; 219 | public static final int abc_list_selector_disabled_holo_light = 0x7f020033; 220 | public static final int abc_list_selector_holo_dark = 0x7f020034; 221 | public static final int abc_list_selector_holo_light = 0x7f020035; 222 | public static final int abc_menu_dropdown_panel_holo_dark = 0x7f020036; 223 | public static final int abc_menu_dropdown_panel_holo_light = 0x7f020037; 224 | public static final int abc_menu_hardkey_panel_holo_dark = 0x7f020038; 225 | public static final int abc_menu_hardkey_panel_holo_light = 0x7f020039; 226 | public static final int abc_search_dropdown_dark = 0x7f02003a; 227 | public static final int abc_search_dropdown_light = 0x7f02003b; 228 | public static final int abc_spinner_ab_default_holo_dark = 0x7f02003c; 229 | public static final int abc_spinner_ab_default_holo_light = 0x7f02003d; 230 | public static final int abc_spinner_ab_disabled_holo_dark = 0x7f02003e; 231 | public static final int abc_spinner_ab_disabled_holo_light = 0x7f02003f; 232 | public static final int abc_spinner_ab_focused_holo_dark = 0x7f020040; 233 | public static final int abc_spinner_ab_focused_holo_light = 0x7f020041; 234 | public static final int abc_spinner_ab_holo_dark = 0x7f020042; 235 | public static final int abc_spinner_ab_holo_light = 0x7f020043; 236 | public static final int abc_spinner_ab_pressed_holo_dark = 0x7f020044; 237 | public static final int abc_spinner_ab_pressed_holo_light = 0x7f020045; 238 | public static final int abc_tab_indicator_ab_holo = 0x7f020046; 239 | public static final int abc_tab_selected_focused_holo = 0x7f020047; 240 | public static final int abc_tab_selected_holo = 0x7f020048; 241 | public static final int abc_tab_selected_pressed_holo = 0x7f020049; 242 | public static final int abc_tab_unselected_pressed_holo = 0x7f02004a; 243 | public static final int abc_textfield_search_default_holo_dark = 0x7f02004b; 244 | public static final int abc_textfield_search_default_holo_light = 0x7f02004c; 245 | public static final int abc_textfield_search_right_default_holo_dark = 0x7f02004d; 246 | public static final int abc_textfield_search_right_default_holo_light = 0x7f02004e; 247 | public static final int abc_textfield_search_right_selected_holo_dark = 0x7f02004f; 248 | public static final int abc_textfield_search_right_selected_holo_light = 0x7f020050; 249 | public static final int abc_textfield_search_selected_holo_dark = 0x7f020051; 250 | public static final int abc_textfield_search_selected_holo_light = 0x7f020052; 251 | public static final int abc_textfield_searchview_holo_dark = 0x7f020053; 252 | public static final int abc_textfield_searchview_holo_light = 0x7f020054; 253 | public static final int abc_textfield_searchview_right_holo_dark = 0x7f020055; 254 | public static final int abc_textfield_searchview_right_holo_light = 0x7f020056; 255 | } 256 | public static final class id { 257 | public static final int action_bar = 0x7f05001c; 258 | public static final int action_bar_activity_content = 0x7f050015; 259 | public static final int action_bar_container = 0x7f05001b; 260 | public static final int action_bar_overlay_layout = 0x7f05001f; 261 | public static final int action_bar_root = 0x7f05001a; 262 | public static final int action_bar_subtitle = 0x7f050023; 263 | public static final int action_bar_title = 0x7f050022; 264 | public static final int action_context_bar = 0x7f05001d; 265 | public static final int action_menu_divider = 0x7f050016; 266 | public static final int action_menu_presenter = 0x7f050017; 267 | public static final int action_mode_close_button = 0x7f050024; 268 | public static final int activity_chooser_view_content = 0x7f050025; 269 | public static final int always = 0x7f05000b; 270 | public static final int beginning = 0x7f050011; 271 | public static final int checkbox = 0x7f05002d; 272 | public static final int collapseActionView = 0x7f05000d; 273 | public static final int default_activity_button = 0x7f050028; 274 | public static final int dialog = 0x7f05000e; 275 | public static final int disableHome = 0x7f050008; 276 | public static final int dropdown = 0x7f05000f; 277 | public static final int edit_query = 0x7f050030; 278 | public static final int end = 0x7f050013; 279 | public static final int expand_activities_button = 0x7f050026; 280 | public static final int expanded_menu = 0x7f05002c; 281 | public static final int home = 0x7f050014; 282 | public static final int homeAsUp = 0x7f050005; 283 | public static final int icon = 0x7f05002a; 284 | public static final int ifRoom = 0x7f05000a; 285 | public static final int image = 0x7f050027; 286 | public static final int listMode = 0x7f050001; 287 | public static final int list_item = 0x7f050029; 288 | public static final int middle = 0x7f050012; 289 | public static final int never = 0x7f050009; 290 | public static final int none = 0x7f050010; 291 | public static final int normal = 0x7f050000; 292 | public static final int progress_circular = 0x7f050018; 293 | public static final int progress_horizontal = 0x7f050019; 294 | public static final int radio = 0x7f05002f; 295 | public static final int search_badge = 0x7f050032; 296 | public static final int search_bar = 0x7f050031; 297 | public static final int search_button = 0x7f050033; 298 | public static final int search_close_btn = 0x7f050038; 299 | public static final int search_edit_frame = 0x7f050034; 300 | public static final int search_go_btn = 0x7f05003a; 301 | public static final int search_mag_icon = 0x7f050035; 302 | public static final int search_plate = 0x7f050036; 303 | public static final int search_src_text = 0x7f050037; 304 | public static final int search_voice_btn = 0x7f05003b; 305 | public static final int shortcut = 0x7f05002e; 306 | public static final int showCustom = 0x7f050007; 307 | public static final int showHome = 0x7f050004; 308 | public static final int showTitle = 0x7f050006; 309 | public static final int split_action_bar = 0x7f05001e; 310 | public static final int submit_area = 0x7f050039; 311 | public static final int tabMode = 0x7f050002; 312 | public static final int title = 0x7f05002b; 313 | public static final int top_action_bar = 0x7f050020; 314 | public static final int up = 0x7f050021; 315 | public static final int useLogo = 0x7f050003; 316 | public static final int withText = 0x7f05000c; 317 | } 318 | public static final class integer { 319 | public static final int abc_max_action_buttons = 0x7f090000; 320 | } 321 | public static final class layout { 322 | public static final int abc_action_bar_decor = 0x7f030000; 323 | public static final int abc_action_bar_decor_include = 0x7f030001; 324 | public static final int abc_action_bar_decor_overlay = 0x7f030002; 325 | public static final int abc_action_bar_home = 0x7f030003; 326 | public static final int abc_action_bar_tab = 0x7f030004; 327 | public static final int abc_action_bar_tabbar = 0x7f030005; 328 | public static final int abc_action_bar_title_item = 0x7f030006; 329 | public static final int abc_action_bar_view_list_nav_layout = 0x7f030007; 330 | public static final int abc_action_menu_item_layout = 0x7f030008; 331 | public static final int abc_action_menu_layout = 0x7f030009; 332 | public static final int abc_action_mode_bar = 0x7f03000a; 333 | public static final int abc_action_mode_close_item = 0x7f03000b; 334 | public static final int abc_activity_chooser_view = 0x7f03000c; 335 | public static final int abc_activity_chooser_view_include = 0x7f03000d; 336 | public static final int abc_activity_chooser_view_list_item = 0x7f03000e; 337 | public static final int abc_expanded_menu_layout = 0x7f03000f; 338 | public static final int abc_list_menu_item_checkbox = 0x7f030010; 339 | public static final int abc_list_menu_item_icon = 0x7f030011; 340 | public static final int abc_list_menu_item_layout = 0x7f030012; 341 | public static final int abc_list_menu_item_radio = 0x7f030013; 342 | public static final int abc_popup_menu_item_layout = 0x7f030014; 343 | public static final int abc_search_dropdown_item_icons_2line = 0x7f030015; 344 | public static final int abc_search_view = 0x7f030016; 345 | public static final int abc_simple_decor = 0x7f030017; 346 | public static final int support_simple_spinner_dropdown_item = 0x7f030019; 347 | } 348 | public static final class string { 349 | public static final int abc_action_bar_home_description = 0x7f0a0001; 350 | public static final int abc_action_bar_up_description = 0x7f0a0002; 351 | public static final int abc_action_menu_overflow_description = 0x7f0a0003; 352 | public static final int abc_action_mode_done = 0x7f0a0000; 353 | public static final int abc_activity_chooser_view_see_all = 0x7f0a000a; 354 | public static final int abc_activitychooserview_choose_application = 0x7f0a0009; 355 | public static final int abc_searchview_description_clear = 0x7f0a0006; 356 | public static final int abc_searchview_description_query = 0x7f0a0005; 357 | public static final int abc_searchview_description_search = 0x7f0a0004; 358 | public static final int abc_searchview_description_submit = 0x7f0a0007; 359 | public static final int abc_searchview_description_voice = 0x7f0a0008; 360 | public static final int abc_shareactionprovider_share_with = 0x7f0a000c; 361 | public static final int abc_shareactionprovider_share_with_application = 0x7f0a000b; 362 | } 363 | public static final class style { 364 | public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0063; 365 | public static final int TextAppearance_AppCompat_Base_SearchResult = 0x7f0b006d; 366 | public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle = 0x7f0b006f; 367 | public static final int TextAppearance_AppCompat_Base_SearchResult_Title = 0x7f0b006e; 368 | public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large = 0x7f0b0069; 369 | public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small = 0x7f0b006a; 370 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult = 0x7f0b0070; 371 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle = 0x7f0b0072; 372 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title = 0x7f0b0071; 373 | public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large = 0x7f0b006b; 374 | public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small = 0x7f0b006c; 375 | public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b0035; 376 | public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b0034; 377 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b0030; 378 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b0031; 379 | public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b0033; 380 | public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b0032; 381 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b001a; 382 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0006; 383 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0008; 384 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0005; 385 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0007; 386 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b001e; 387 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0020; 388 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b001d; 389 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b001f; 390 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu = 0x7f0b0054; 391 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle = 0x7f0b0056; 392 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse = 0x7f0b0058; 393 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title = 0x7f0b0055; 394 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse = 0x7f0b0057; 395 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle = 0x7f0b0051; 396 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse = 0x7f0b0053; 397 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title = 0x7f0b0050; 398 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse = 0x7f0b0052; 399 | public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem = 0x7f0b0061; 400 | public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0021; 401 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b002e; 402 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b002f; 403 | public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item = 0x7f0b0062; 404 | public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0028; 405 | public static final int Theme_AppCompat = 0x7f0b0077; 406 | public static final int Theme_AppCompat_Base_CompactMenu = 0x7f0b0083; 407 | public static final int Theme_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0084; 408 | public static final int Theme_AppCompat_CompactMenu = 0x7f0b007c; 409 | public static final int Theme_AppCompat_CompactMenu_Dialog = 0x7f0b007d; 410 | public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0b007a; 411 | public static final int Theme_AppCompat_Light = 0x7f0b0078; 412 | public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b0079; 413 | public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b007b; 414 | public static final int Theme_Base = 0x7f0b007e; 415 | public static final int Theme_Base_AppCompat = 0x7f0b0080; 416 | public static final int Theme_Base_AppCompat_DialogWhenLarge = 0x7f0b0085; 417 | public static final int Theme_Base_AppCompat_DialogWhenLarge_Base = 0x7f0b0089; 418 | public static final int Theme_Base_AppCompat_Dialog_FixedSize = 0x7f0b0087; 419 | public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize = 0x7f0b0088; 420 | public static final int Theme_Base_AppCompat_Light = 0x7f0b0081; 421 | public static final int Theme_Base_AppCompat_Light_DarkActionBar = 0x7f0b0082; 422 | public static final int Theme_Base_AppCompat_Light_DialogWhenLarge = 0x7f0b0086; 423 | public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base = 0x7f0b008a; 424 | public static final int Theme_Base_Light = 0x7f0b007f; 425 | public static final int Widget_AppCompat_ActionBar = 0x7f0b0000; 426 | public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b0002; 427 | public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b0011; 428 | public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b0017; 429 | public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b0014; 430 | public static final int Widget_AppCompat_ActionButton = 0x7f0b000b; 431 | public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b000d; 432 | public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b000f; 433 | public static final int Widget_AppCompat_ActionMode = 0x7f0b001b; 434 | public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0038; 435 | public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b0036; 436 | public static final int Widget_AppCompat_Base_ActionBar = 0x7f0b003a; 437 | public static final int Widget_AppCompat_Base_ActionBar_Solid = 0x7f0b003c; 438 | public static final int Widget_AppCompat_Base_ActionBar_TabBar = 0x7f0b0045; 439 | public static final int Widget_AppCompat_Base_ActionBar_TabText = 0x7f0b004b; 440 | public static final int Widget_AppCompat_Base_ActionBar_TabView = 0x7f0b0048; 441 | public static final int Widget_AppCompat_Base_ActionButton = 0x7f0b003f; 442 | public static final int Widget_AppCompat_Base_ActionButton_CloseMode = 0x7f0b0041; 443 | public static final int Widget_AppCompat_Base_ActionButton_Overflow = 0x7f0b0043; 444 | public static final int Widget_AppCompat_Base_ActionMode = 0x7f0b004e; 445 | public static final int Widget_AppCompat_Base_ActivityChooserView = 0x7f0b0075; 446 | public static final int Widget_AppCompat_Base_AutoCompleteTextView = 0x7f0b0073; 447 | public static final int Widget_AppCompat_Base_DropDownItem_Spinner = 0x7f0b005d; 448 | public static final int Widget_AppCompat_Base_ListPopupWindow = 0x7f0b0065; 449 | public static final int Widget_AppCompat_Base_ListView_DropDown = 0x7f0b005f; 450 | public static final int Widget_AppCompat_Base_ListView_Menu = 0x7f0b0064; 451 | public static final int Widget_AppCompat_Base_PopupMenu = 0x7f0b0067; 452 | public static final int Widget_AppCompat_Base_ProgressBar = 0x7f0b005a; 453 | public static final int Widget_AppCompat_Base_ProgressBar_Horizontal = 0x7f0b0059; 454 | public static final int Widget_AppCompat_Base_Spinner = 0x7f0b005b; 455 | public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b0024; 456 | public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0001; 457 | public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0003; 458 | public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0004; 459 | public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b0012; 460 | public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b0013; 461 | public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b0018; 462 | public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b0019; 463 | public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0015; 464 | public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b0016; 465 | public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b000c; 466 | public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b000e; 467 | public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b0010; 468 | public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b001c; 469 | public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0039; 470 | public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0037; 471 | public static final int Widget_AppCompat_Light_Base_ActionBar = 0x7f0b003b; 472 | public static final int Widget_AppCompat_Light_Base_ActionBar_Solid = 0x7f0b003d; 473 | public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse = 0x7f0b003e; 474 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar = 0x7f0b0046; 475 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse = 0x7f0b0047; 476 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabText = 0x7f0b004c; 477 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse = 0x7f0b004d; 478 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabView = 0x7f0b0049; 479 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse = 0x7f0b004a; 480 | public static final int Widget_AppCompat_Light_Base_ActionButton = 0x7f0b0040; 481 | public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode = 0x7f0b0042; 482 | public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow = 0x7f0b0044; 483 | public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse = 0x7f0b004f; 484 | public static final int Widget_AppCompat_Light_Base_ActivityChooserView = 0x7f0b0076; 485 | public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView = 0x7f0b0074; 486 | public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner = 0x7f0b005e; 487 | public static final int Widget_AppCompat_Light_Base_ListPopupWindow = 0x7f0b0066; 488 | public static final int Widget_AppCompat_Light_Base_ListView_DropDown = 0x7f0b0060; 489 | public static final int Widget_AppCompat_Light_Base_PopupMenu = 0x7f0b0068; 490 | public static final int Widget_AppCompat_Light_Base_Spinner = 0x7f0b005c; 491 | public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0025; 492 | public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0b002a; 493 | public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b0027; 494 | public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b002c; 495 | public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b0023; 496 | public static final int Widget_AppCompat_ListPopupWindow = 0x7f0b0029; 497 | public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b0026; 498 | public static final int Widget_AppCompat_ListView_Menu = 0x7f0b002d; 499 | public static final int Widget_AppCompat_PopupMenu = 0x7f0b002b; 500 | public static final int Widget_AppCompat_ProgressBar = 0x7f0b000a; 501 | public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0009; 502 | public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b0022; 503 | } 504 | public static final class styleable { 505 | public static final int[] ActionBar = { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 }; 506 | public static final int[] ActionBarLayout = { 0x010100b3 }; 507 | public static final int ActionBarLayout_android_layout_gravity = 0; 508 | public static final int[] ActionBarWindow = { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }; 509 | public static final int ActionBarWindow_windowActionBar = 0; 510 | public static final int ActionBarWindow_windowActionBarOverlay = 1; 511 | public static final int ActionBarWindow_windowFixedHeightMajor = 6; 512 | public static final int ActionBarWindow_windowFixedHeightMinor = 4; 513 | public static final int ActionBarWindow_windowFixedWidthMajor = 3; 514 | public static final int ActionBarWindow_windowFixedWidthMinor = 5; 515 | public static final int ActionBarWindow_windowSplitActionBar = 2; 516 | public static final int ActionBar_background = 10; 517 | public static final int ActionBar_backgroundSplit = 12; 518 | public static final int ActionBar_backgroundStacked = 11; 519 | public static final int ActionBar_customNavigationLayout = 13; 520 | public static final int ActionBar_displayOptions = 3; 521 | public static final int ActionBar_divider = 9; 522 | public static final int ActionBar_height = 1; 523 | public static final int ActionBar_homeLayout = 14; 524 | public static final int ActionBar_icon = 7; 525 | public static final int ActionBar_indeterminateProgressStyle = 16; 526 | public static final int ActionBar_itemPadding = 18; 527 | public static final int ActionBar_logo = 8; 528 | public static final int ActionBar_navigationMode = 2; 529 | public static final int ActionBar_progressBarPadding = 17; 530 | public static final int ActionBar_progressBarStyle = 15; 531 | public static final int ActionBar_subtitle = 4; 532 | public static final int ActionBar_subtitleTextStyle = 6; 533 | public static final int ActionBar_title = 0; 534 | public static final int ActionBar_titleTextStyle = 5; 535 | public static final int[] ActionMenuItemView = { 0x0101013f }; 536 | public static final int ActionMenuItemView_android_minWidth = 0; 537 | public static final int[] ActionMenuView = { }; 538 | public static final int[] ActionMode = { 0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f, 0x7f010031 }; 539 | public static final int ActionMode_background = 3; 540 | public static final int ActionMode_backgroundSplit = 4; 541 | public static final int ActionMode_height = 0; 542 | public static final int ActionMode_subtitleTextStyle = 2; 543 | public static final int ActionMode_titleTextStyle = 1; 544 | public static final int[] ActivityChooserView = { 0x7f01006a, 0x7f01006b }; 545 | public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; 546 | public static final int ActivityChooserView_initialActivityCount = 0; 547 | public static final int[] CompatTextView = { 0x7f01006d }; 548 | public static final int CompatTextView_textAllCaps = 0; 549 | public static final int[] LinearLayoutICS = { 0x7f01002e, 0x7f010055, 0x7f010056 }; 550 | public static final int LinearLayoutICS_divider = 0; 551 | public static final int LinearLayoutICS_dividerPadding = 2; 552 | public static final int LinearLayoutICS_showDividers = 1; 553 | public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; 554 | public static final int MenuGroup_android_checkableBehavior = 5; 555 | public static final int MenuGroup_android_enabled = 0; 556 | public static final int MenuGroup_android_id = 1; 557 | public static final int MenuGroup_android_menuCategory = 3; 558 | public static final int MenuGroup_android_orderInCategory = 4; 559 | public static final int MenuGroup_android_visible = 2; 560 | public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 }; 561 | public static final int MenuItem_actionLayout = 14; 562 | public static final int MenuItem_actionProviderClass = 16; 563 | public static final int MenuItem_actionViewClass = 15; 564 | public static final int MenuItem_android_alphabeticShortcut = 9; 565 | public static final int MenuItem_android_checkable = 11; 566 | public static final int MenuItem_android_checked = 3; 567 | public static final int MenuItem_android_enabled = 1; 568 | public static final int MenuItem_android_icon = 0; 569 | public static final int MenuItem_android_id = 2; 570 | public static final int MenuItem_android_menuCategory = 5; 571 | public static final int MenuItem_android_numericShortcut = 10; 572 | public static final int MenuItem_android_onClick = 12; 573 | public static final int MenuItem_android_orderInCategory = 6; 574 | public static final int MenuItem_android_title = 7; 575 | public static final int MenuItem_android_titleCondensed = 8; 576 | public static final int MenuItem_android_visible = 4; 577 | public static final int MenuItem_showAsAction = 13; 578 | public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010438 }; 579 | public static final int MenuView_android_headerBackground = 4; 580 | public static final int MenuView_android_horizontalDivider = 2; 581 | public static final int MenuView_android_itemBackground = 5; 582 | public static final int MenuView_android_itemIconDisabledAlpha = 6; 583 | public static final int MenuView_android_itemTextAppearance = 1; 584 | public static final int MenuView_android_preserveIconSpacing = 7; 585 | public static final int MenuView_android_verticalDivider = 3; 586 | public static final int MenuView_android_windowAnimationStyle = 0; 587 | public static final int[] SearchView = { 0x0101011f, 0x01010220, 0x01010264, 0x7f01005a, 0x7f01005b }; 588 | public static final int SearchView_android_imeOptions = 2; 589 | public static final int SearchView_android_inputType = 1; 590 | public static final int SearchView_android_maxWidth = 0; 591 | public static final int SearchView_iconifiedByDefault = 3; 592 | public static final int SearchView_queryHint = 4; 593 | public static final int[] Spinner = { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }; 594 | public static final int Spinner_android_dropDownHorizontalOffset = 4; 595 | public static final int Spinner_android_dropDownSelector = 1; 596 | public static final int Spinner_android_dropDownVerticalOffset = 5; 597 | public static final int Spinner_android_dropDownWidth = 3; 598 | public static final int Spinner_android_gravity = 0; 599 | public static final int Spinner_android_popupBackground = 2; 600 | public static final int Spinner_disableChildrenWhenDisabled = 9; 601 | public static final int Spinner_popupPromptView = 8; 602 | public static final int Spinner_prompt = 6; 603 | public static final int Spinner_spinnerMode = 7; 604 | public static final int[] Theme = { 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }; 605 | public static final int Theme_actionDropDownStyle = 0; 606 | public static final int Theme_dropdownListPreferredItemHeight = 1; 607 | public static final int Theme_listChoiceBackgroundIndicator = 5; 608 | public static final int Theme_panelMenuListTheme = 4; 609 | public static final int Theme_panelMenuListWidth = 3; 610 | public static final int Theme_popupMenuStyle = 2; 611 | public static final int[] View = { 0x010100da, 0x7f010038, 0x7f010039 }; 612 | public static final int View_android_focusable = 0; 613 | public static final int View_paddingEnd = 2; 614 | public static final int View_paddingStart = 1; 615 | } 616 | } 617 | --------------------------------------------------------------------------------