Skip to content

Commit 52b8f08

Browse files
authored
[android tests] setup project name in AndroidStudio dashboard (#19200)
1 parent 21fcb18 commit 52b8f08

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

tests/cpp-empty-test/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx'
22
project(':libcocos2dx').projectDir = new File(settingsDir, '../../../cocos/platform/android/libcocos2dx')
33
include ':CppEmptyTest'
44
project(':CppEmptyTest').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "cpp-empty-test"

tests/cpp-tests/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx'
22
project(':libcocos2dx').projectDir = new File(settingsDir, '../../../cocos/platform/android/libcocos2dx')
33
include ':CppTests'
44
project(':CppTests').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "cpp-tests"

tests/game-controller-test/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx_with_controller'
22
project(':libcocos2dx_with_controller').projectDir = new File(settingsDir, '../../../cocos/platform/android/libcocos2dx-with-controller')
33
include ':GameControllerTest'
44
project(':GameControllerTest').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "game-controller-test"

tests/js-tests/project/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx'
22
project(':libcocos2dx').projectDir = new File(settingsDir, '../../../../cocos/platform/android/libcocos2dx')
33
include ':JSTests'
44
project(':JSTests').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "js-tests"

tests/lua-empty-test/project/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx'
22
project(':libcocos2dx').projectDir = new File(settingsDir, '../../../../cocos/platform/android/libcocos2dx')
33
include ':LuaEmptyTest'
44
project(':LuaEmptyTest').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "lua-empty-test"

tests/lua-game-controller-test/project/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx_with_controller'
22
project(':libcocos2dx_with_controller').projectDir = new File(settingsDir, '../../../../cocos/platform/android/libcocos2dx-with-controller')
33
include ':LuaGameControllerTest'
44
project(':LuaGameControllerTest').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "lua-game-controller-test"

tests/lua-tests/project/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx'
22
project(':libcocos2dx').projectDir = new File(settingsDir, '../../../../cocos/platform/android/libcocos2dx')
33
include ':LuaTests'
44
project(':LuaTests').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "lua-tests"

tests/performance-tests/proj.android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include ':libcocos2dx'
22
project(':libcocos2dx').projectDir = new File(settingsDir, '../../../cocos/platform/android/libcocos2dx')
33
include ':performance-tests'
44
project(':performance-tests').projectDir = new File(settingsDir, 'app')
5+
rootProject.name = "performance-tests"

0 commit comments

Comments
 (0)