Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoshi Sugawara committed May 13, 2016
0 parents commit 4cbc5a0
Show file tree
Hide file tree
Showing 7,359 changed files with 2,755,057 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file added .DS_Store
Binary file not shown.
30 changes: 30 additions & 0 deletions android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.seleuco.mame4droid"
android:installLocation="preferExternal" android:versionName="1.2.1" android:versionCode="6">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-sdk android:targetSdkVersion="15" android:minSdkVersion="7"/>
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" android:resizeable="true"/>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:allowClearUserData="true" android:hardwareAccelerated="true" android:debuggable="false">
<activity android:name="com.seleuco.mame4droid.MAME4droid" android:label="@string/app_name"
android:launchMode="singleTask"
android:windowSoftInputMode="stateAlwaysHidden" android:theme="@style/Theme.MAME4droid">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.seleuco.mame4droid.prefs.UserPreferences" android:theme="@style/Theme.MAME4droid.TitleBar" android:label="MAME4droid Reloaded Preferences"/>
<activity android:name="com.seleuco.mame4droid.HelpActivity" android:launchMode="singleTop" android:theme="@style/Theme.MAME4droid.TitleBar" android:label="MAME4droid Reloaded Help"/>
<activity android:name="com.seleuco.mame4droid.prefs.DefineKeys" android:theme="@style/Theme.MAME4droid.TitleBar" android:label="MAME4droid Reloaded Define Keys"/>
<activity android:name="com.seleuco.mame4droid.prefs.ListKeys" android:theme="@style/Theme.MAME4droid.TitleBar" android:label="MAME4droid Reloaded Player Keys"/>
<activity android:name=".prefs.KeySelect" android:label="Select Key" android:theme="@android:style/Theme.Dialog"/>
<meta-data android:name="xperiaplayoptimized_content" android:resource="@drawable/icon"/>
</application>

</manifest>
1 change: 1 addition & 0 deletions android/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
../android-ndk-r8/ndk-build
25 changes: 25 additions & 0 deletions android/jni/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright (C) 2009 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_LDLIBS := -ldl -llog
LOCAL_MODULE := mame4droid-jni
LOCAL_SRC_FILES := mame4droid-jni.c

include $(BUILD_SHARED_LIBRARY)

2 changes: 2 additions & 0 deletions android/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Build ARMv7-A machine code.
APP_ABI := all
81 changes: 81 additions & 0 deletions android/jni/com_seleuco_mame4droid_Emulator.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions android/jni/jni.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
javah -classpath ../bin/classes com.seleuco.mame4droid.Emulator
Loading

0 comments on commit 4cbc5a0

Please sign in to comment.