This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gh issue list --json number,title,createdAt,assignees,body,author --template \ | |
'# {{printf "GitHub Issues"}} | |
{{range .}} | |
## {{printf "#%v" .number}} {{.title}} | |
## Tester | |
{{.author.name}}{{if .author.name}} - {{end}}{{.author.login}} | |
### Assignees | |
{{range .assignees}}{{.name}} {{.login}} {{if .name}},{{end}}{{end}} | |
### Created at | |
{{.createdAt}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Application Kotlin file to initialize a Map provider | |
package com.omh.android.maps.sample | |
import android.app.Application | |
import com.omh.android.maps.api.factories.OmhMapProvider | |
class DemoApp : Application() { | |
override fun onCreate() { | |
super.onCreate() |
OlderNewer