Skip to content

Commit

Permalink
Migrated to Android Studio
Browse files Browse the repository at this point in the history
Migrated to Gradle
Now Supports Android 23
  • Loading branch information
Daniel Frey committed Aug 20, 2015
1 parent 58b1230 commit 6dc8ab7
Show file tree
Hide file tree
Showing 215 changed files with 1,558 additions and 1,248 deletions.
9 changes: 0 additions & 9 deletions .classpath

This file was deleted.

27 changes: 27 additions & 0 deletions .gitignore
@@ -0,0 +1,27 @@
# Built application files
/*/build/

# Crashlytics configuations
com_crashlytics_export_strings.xml

# Local configuration file (sdk path, etc)
local.properties

# Gradle generated files
.gradle/

# Signing files
.signing/

# User-specific configurations
.idea/**
*.iml

# OS-specific files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
33 changes: 0 additions & 33 deletions .project

This file was deleted.

35 changes: 35 additions & 0 deletions app/build.gradle
@@ -0,0 +1,35 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.0"

defaultConfig {
applicationId "tkj.android.homecontrol.mythmote"
minSdkVersion 8
targetSdkVersion 23
versionCode 2508
versionName "1.9.0.1"
}
if (project.hasProperty("mythtmote.signing")
&& new File(project.property("mythtvmote.signing") + ".gradle").exists()) {
apply from: project.property("mythmote.signing") + ".gradle";
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'LICENSE.txt'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
productFlavors {
}
}

dependencies {
compile 'com.android.support:support-v4:23.0.0'
}
2 changes: 0 additions & 2 deletions AndroidManifest.xml → app/src/main/AndroidManifest.xml
Expand Up @@ -3,8 +3,6 @@
package="tkj.android.homecontrol.mythmote"
android:versionCode="2508" android:versionName="1.9.0.1">

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"></uses-sdk>

<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
Expand Down
@@ -1,46 +1,46 @@
/*
* Copyright (C) 2010 Thomas G. Kenny Jr
*
* Licensed under the GNU General Public 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.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* 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.
*/


package tkj.android.homecontrol.mythmote;

/*
* Contains all information for a mythtv frontend.
* */
public class FrontendLocation {

public static String STR_ID = "ID";
public static String STR_NAME = "NAME";
public static String STR_ADDRESS = "ADDRESS";
public static String STR_PORT = "PORT";
public static String STR_MAC = "MAC";
public static String STR_WIFIONLY = "WIFIONLY";


public int ID = -1;
public String Name = "";
public String Address = "";
public int Port = 6456;
public String MAC = "";
public int WifiOnly = 1;



public FrontendLocation()
{

}
}
/*
* Copyright (C) 2010 Thomas G. Kenny Jr
*
* Licensed under the GNU General Public 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.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* 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.
*/


package tkj.android.homecontrol.mythmote;

/*
* Contains all information for a mythtv frontend.
* */
public class FrontendLocation {

public static String STR_ID = "ID";
public static String STR_NAME = "NAME";
public static String STR_ADDRESS = "ADDRESS";
public static String STR_PORT = "PORT";
public static String STR_MAC = "MAC";
public static String STR_WIFIONLY = "WIFIONLY";


public int ID = -1;
public String Name = "";
public String Address = "";
public int Port = 6456;
public String MAC = "";
public int WifiOnly = 1;



public FrontendLocation()
{

}
}

0 comments on commit 6dc8ab7

Please sign in to comment.