Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
p x
MapMultiEngine
Commits
ad0b22a9
Commit
ad0b22a9
authored
Jun 12, 2025
by
p x
Browse files
init
parent
ea59bc06
Pipeline
#3102
canceled with stages
Changes
55
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
app/src/main/res/layout/activity_main.xml
0 → 100644
View file @
ad0b22a9
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/main"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
tools:context=
".MainActivity"
>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"Hello World!"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/mipmap-anydpi/ic_launcher.xml
0 → 100644
View file @
ad0b22a9
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<background
android:drawable=
"@drawable/ic_launcher_background"
/>
<foreground
android:drawable=
"@drawable/ic_launcher_foreground"
/>
<monochrome
android:drawable=
"@drawable/ic_launcher_foreground"
/>
</adaptive-icon>
\ No newline at end of file
app/src/main/res/mipmap-anydpi/ic_launcher_round.xml
0 → 100644
View file @
ad0b22a9
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<background
android:drawable=
"@drawable/ic_launcher_background"
/>
<foreground
android:drawable=
"@drawable/ic_launcher_foreground"
/>
<monochrome
android:drawable=
"@drawable/ic_launcher_foreground"
/>
</adaptive-icon>
\ No newline at end of file
app/src/main/res/mipmap-hdpi/ic_launcher.webp
0 → 100644
View file @
ad0b22a9
1.37 KB
app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
0 → 100644
View file @
ad0b22a9
2.83 KB
app/src/main/res/mipmap-mdpi/ic_launcher.webp
0 → 100644
View file @
ad0b22a9
982 Bytes
app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
0 → 100644
View file @
ad0b22a9
1.73 KB
app/src/main/res/mipmap-xhdpi/ic_launcher.webp
0 → 100644
View file @
ad0b22a9
1.86 KB
app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
0 → 100644
View file @
ad0b22a9
3.83 KB
app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
0 → 100644
View file @
ad0b22a9
2.82 KB
app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
0 → 100644
View file @
ad0b22a9
5.78 KB
app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
0 → 100644
View file @
ad0b22a9
3.75 KB
app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
0 → 100644
View file @
ad0b22a9
7.6 KB
app/src/main/res/values-night/themes.xml
0 → 100644
View file @
ad0b22a9
<resources
xmlns:tools=
"http://schemas.android.com/tools"
>
<!-- Base application theme. -->
<style
name=
"Base.Theme.MapMultiEngine"
parent=
"Theme.Material3.DayNight.NoActionBar"
>
<!-- Customize your dark theme here. -->
<!-- <item name="colorPrimary">@color/my_dark_primary</item> -->
</style>
</resources>
\ No newline at end of file
app/src/main/res/values/colors.xml
0 → 100644
View file @
ad0b22a9
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color
name=
"black"
>
#FF000000
</color>
<color
name=
"white"
>
#FFFFFFFF
</color>
</resources>
\ No newline at end of file
app/src/main/res/values/strings.xml
0 → 100644
View file @
ad0b22a9
<resources>
<string
name=
"app_name"
>
MapMultiEngine
</string>
</resources>
\ No newline at end of file
app/src/main/res/values/themes.xml
0 → 100644
View file @
ad0b22a9
<resources
xmlns:tools=
"http://schemas.android.com/tools"
>
<!-- Base application theme. -->
<style
name=
"Base.Theme.MapMultiEngine"
parent=
"Theme.Material3.DayNight.NoActionBar"
>
<!-- Customize your light theme here. -->
<!-- <item name="colorPrimary">@color/my_light_primary</item> -->
</style>
<style
name=
"Theme.MapMultiEngine"
parent=
"Base.Theme.MapMultiEngine"
/>
</resources>
\ No newline at end of file
app/src/main/res/xml/backup_rules.xml
0 → 100644
View file @
ad0b22a9
<?xml version="1.0" encoding="utf-8"?>
<!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older than API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>
\ No newline at end of file
app/src/main/res/xml/data_extraction_rules.xml
0 → 100644
View file @
ad0b22a9
<?xml version="1.0" encoding="utf-8"?>
<!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>
\ No newline at end of file
app/src/test/java/com/sd/mapmultiengine/ExampleUnitTest.kt
0 → 100644
View file @
ad0b22a9
package
com.sd.mapmultiengine
import
org.junit.Test
import
org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class
ExampleUnitTest
{
@Test
fun
addition_isCorrect
()
{
assertEquals
(
4
,
2
+
2
)
}
}
\ No newline at end of file
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment