Skip to content

Commit c58abb6

Browse files
Andrew HsiehGerrit Code Review
authored andcommitted
Merge "Rename modules NativeActivity"
2 parents 0aff431 + c0567b5 commit c58abb6

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

ndk/platforms/android-17/samples/Teapot/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
android:configChanges="orientation|keyboardHidden">
2525
<!-- Tell NativeActivity the name of or .so -->
2626
<meta-data android:name="android.app.lib_name"
27-
android:value="NativeActivity" />
27+
android:value="TeapotNativeActivity" />
2828
<intent-filter>
2929
<action android:name="android.intent.action.MAIN" />
3030
<category android:name="android.intent.category.LAUNCHER" />

ndk/platforms/android-17/samples/Teapot/jni/Android.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
22

33
include $(CLEAR_VARS)
44

5-
LOCAL_MODULE := NativeActivity
5+
LOCAL_MODULE := TeapotNativeActivity
66
LOCAL_SRC_FILES := TeapotNativeActivity.cpp \
77
TeapotRenderer.cpp \
88

ndk/platforms/android-17/samples/Teapot/jni/TeapotNativeActivity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ void android_main( android_app* state )
444444
state->onInputEvent = Engine::HandleInput;
445445

446446
#ifdef USE_NDK_PROFILER
447-
monstartup("libNativeActivity.so");
447+
monstartup("libTeapotNativeActivity.so");
448448
#endif
449449

450450
// Prepare to monitor accelerometer

ndk/platforms/android-18/samples/MoreTeapots/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
android:configChanges="orientation|keyboardHidden">
2525
<!-- Tell NativeActivity the name of or .so -->
2626
<meta-data android:name="android.app.lib_name"
27-
android:value="NativeActivity" />
27+
android:value="MoreTeapotsNativeActivity" />
2828
<intent-filter>
2929
<action android:name="android.intent.action.MAIN" />
3030
<category android:name="android.intent.category.LAUNCHER" />

ndk/platforms/android-18/samples/MoreTeapots/jni/Android.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
22

33
include $(CLEAR_VARS)
44

5-
LOCAL_MODULE := NativeActivity
5+
LOCAL_MODULE := MoreTeapotsNativeActivity
66
LOCAL_SRC_FILES := MoreTeapotsNativeActivity.cpp \
77
MoreTeapotsRenderer.cpp \
88

@@ -16,4 +16,4 @@ include $(BUILD_SHARED_LIBRARY)
1616

1717
$(call import-module,android/ndk_helper)
1818
$(call import-module,android/native_app_glue)
19-
$(call import-module,android/cpufeatures)
19+
$(call import-module,android/cpufeatures)

ndk/platforms/android-18/samples/MoreTeapots/jni/MoreTeapotsNativeActivity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ void android_main( android_app* state )
455455
state->onInputEvent = Engine::HandleInput;
456456

457457
#ifdef USE_NDK_PROFILER
458-
monstartup("libNativeActivity.so");
458+
monstartup("libMoreTeapotsNativeActivity.so");
459459
#endif
460460

461461
// Prepare to monitor accelerometer

ndk/sources/android/ndk_helper/GLContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
//--------------------------------------------------------------------------------
18-
// glContext.h
18+
// GLContext.h
1919
//--------------------------------------------------------------------------------
2020
#ifndef GLCONTEXT_H_
2121
#define GLCONTEXT_H_

0 commit comments

Comments
 (0)