Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Froemling committed Nov 11, 2017
1 parent 930ed5d commit 8d29480
Show file tree
Hide file tree
Showing 104 changed files with 8,825 additions and 0 deletions.
Binary file added BSRemote/.DS_Store
Binary file not shown.
27 changes: 27 additions & 0 deletions BSRemote/build.gradle
@@ -0,0 +1,27 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.0'

defaultConfig {
applicationId "net.froemling.bsremote"
minSdkVersion 14
targetSdkVersion 25
}

buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
disable 'MissingTranslation'
}
}

dependencies {
compile 'com.android.support:support-v4:25.0.1'
}
Empty file added BSRemote/proguard-rules.pro
Empty file.
Binary file added BSRemote/src/.DS_Store
Binary file not shown.
Binary file added BSRemote/src/main/.DS_Store
Binary file not shown.
38 changes: 38 additions & 0 deletions BSRemote/src/main/AndroidManifest.xml
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.froemling.bsremote"
android:versionCode="24"
android:versionName="1.2.21" >

<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-configuration
android:reqTouchScreen="finger" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>

<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name_short"
android:theme="@style/AppTheme">
<activity
android:name="net.froemling.bsremote.GamePadActivity"
android:label="@string/app_name_short" android:screenOrientation="sensorLandscape"
android:configChanges="orientation|screenSize|keyboardHidden">
</activity>
<activity
android:name="net.froemling.bsremote.ScanActivity"
android:label="@string/app_name_short"
android:screenOrientation="sensorLandscape"
android:configChanges="orientation|screenSize|keyboardHidden"
android:theme="@style/AppJoinTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
Binary file added BSRemote/src/main/java/net/.DS_Store
Binary file not shown.

0 comments on commit 8d29480

Please sign in to comment.