-
Notifications
You must be signed in to change notification settings - Fork 18
/
settings.gradle
19 lines (15 loc) · 1.2 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
rootProject.name = "deVStudio"
include ':app', ':UserLAndLibrary'
project(':UserLAndLibrary').projectDir = new File('UserLAndLibrary/app')
include ':terminal-view', ':terminal-emulator', ':terminal-app'
project(':terminal-app').projectDir = new File('UserLAndLibrary/termux-app/app')
project(':terminal-view').projectDir = new File('UserLAndLibrary/termux-app/terminal-view')
project(':terminal-emulator').projectDir = new File('UserLAndLibrary/termux-app/terminal-emulator')
include ':pubkeyGenerator', ':bVNC', ':remoteClientLib'
project(':bVNC').projectDir = new File('UserLAndLibrary/remote-desktop-clients/bVNC')
project(':pubkeyGenerator').projectDir = new File('UserLAndLibrary/remote-desktop-clients/pubkeyGenerator')
project(':remoteClientLib').projectDir = new File('UserLAndLibrary/remote-desktop-clients/remoteClientLib')
include ':remoteClientLib:jni:libs:deps:FreeRDP:client:Android:Studio:freeRDPCore'
project(':remoteClientLib:jni:libs:deps:FreeRDP:client:Android:Studio:freeRDPCore').projectDir = new File('UserLAndLibrary/remote-desktop-clients/remoteClientLib/jni/libs/deps/FreeRDP/client/Android/Studio/freeRDPCore/')
include ':CustomLibrary'
project(':CustomLibrary').projectDir = new File('CustomLibrary')