Merge pull request #243 from Erlkoenig90/migrate-gradle
Switch build system to gradle
This commit is contained in:
commit
e210b92225
57 changed files with 685 additions and 591 deletions
29
brouter-routing-app/src/main/AndroidManifest.xml
Normal file
29
brouter-routing-app/src/main/AndroidManifest.xml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="btools.routingapp">
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name" android:allowBackup="true">
|
||||
<activity android:name=".BRouterActivity"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".BInstallerActivity"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="landscape" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
||||
</activity>
|
||||
<service
|
||||
android:exported="true"
|
||||
android:name=".BRouterService"
|
||||
android:enabled="true"
|
||||
android:process=":brouter_service">
|
||||
</service>
|
||||
</application>
|
||||
</manifest>
|
||||
BIN
brouter-routing-app/src/main/assets/modes.zip
Normal file
BIN
brouter-routing-app/src/main/assets/modes.zip
Normal file
Binary file not shown.
BIN
brouter-routing-app/src/main/assets/profiles2.zip
Normal file
BIN
brouter-routing-app/src/main/assets/profiles2.zip
Normal file
Binary file not shown.
BIN
brouter-routing-app/src/main/assets/readmes.zip
Normal file
BIN
brouter-routing-app/src/main/assets/readmes.zip
Normal file
Binary file not shown.
BIN
brouter-routing-app/src/main/assets/segments4.zip
Normal file
BIN
brouter-routing-app/src/main/assets/segments4.zip
Normal file
Binary file not shown.
BIN
brouter-routing-app/src/main/assets/world.png
Normal file
BIN
brouter-routing-app/src/main/assets/world.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 266 KiB |
BIN
brouter-routing-app/src/main/res/drawable-hdpi/icon.png
Normal file
BIN
brouter-routing-app/src/main/res/drawable-hdpi/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
brouter-routing-app/src/main/res/drawable-ldpi/icon.png
Normal file
BIN
brouter-routing-app/src/main/res/drawable-ldpi/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
brouter-routing-app/src/main/res/drawable-mdpi/icon.png
Normal file
BIN
brouter-routing-app/src/main/res/drawable-mdpi/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
22
brouter-routing-app/src/main/res/layout/main.xml
Normal file
22
brouter-routing-app/src/main/res/layout/main.xml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2010 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
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.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
</LinearLayout>
|
||||
19
brouter-routing-app/src/main/res/values/strings.xml
Normal file
19
brouter-routing-app/src/main/res/values/strings.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2010 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
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.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<string name="app_name">BRouter</string>
|
||||
</resources>
|
||||
Loading…
Add table
Add a link
Reference in a new issue