You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
460 B
19 lines
460 B
package uca.baptistearthur.geocaching
|
|
|
|
import android.os.Bundle
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
|
import org.osmdroid.config.Configuration
|
|
class MainWindow: AppCompatActivity() {
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
|
Configuration.getInstance().userAgentValue = "Geocaching"
|
|
|
|
// Set the user agent for OsmDroid
|
|
|
|
setContentView(R.layout.main_window)
|
|
}
|
|
|
|
} |