Skip to content

Commit f1bf167

Browse files
author
Ildar Mulyukov
committed
Total rename -> AndroidLuaSDK
1 parent 284e4bc commit f1bf167

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
android_hello_world
2-
===================
1+
AndroidLuaSDK
2+
=============
33

4-
Hello World Android App
5-
6-
<img src="http://i.imgur.com/dio0DXF.png" width="450" />
4+
TODO

app/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="codepath.demos.helloworlddemo"
3+
package="com.github.ildar.AndroidLuaSDK"
44
android:versionCode="1"
55
android:versionName="1.0" >
66

@@ -9,7 +9,7 @@
99
android:label="@string/app_name"
1010
>
1111
<activity
12-
android:name="codepath.demos.helloworlddemo.HelloWorldActivity"
12+
android:name=".Main"
1313
android:label="@string/app_name" >
1414
<intent-filter>
1515
<action android:name="android.intent.action.MAIN" />

app/src/main/java/codepath/demos/helloworlddemo/HelloWorldActivity.java app/src/main/java/com/github/ildar/AndroidLuaSDK/Main.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package codepath.demos.helloworlddemo;
1+
package com.github.ildar.AndroidLuaSDK;
22

33
import android.os.Bundle;
44
import android.app.Activity;
55
import android.view.Menu;
66

7-
public class HelloWorldActivity extends Activity {
7+
public class Main extends Activity {
88

99
@Override
1010
protected void onCreate(Bundle savedInstanceState) {

app/src/main/res/values/strings.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
33

4-
<string name="app_name">HelloWorldDemo</string>
4+
<string name="app_name">AndroidLuaSDK</string>
55
<string name="hello_world">Hello world!</string>
66
<string name="menu_settings">Settings</string>
77

8-
</resources>
8+
</resources>

0 commit comments

Comments
 (0)