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
<string name="author" translatable="false">Droids On Roids</string> |
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
<string name="tab_foo">Foo</string> | |
<string name="tab_baz">Baz</string> | |
<string-array name="tab_labels"> | |
<item>@string/tab_foo</item> | |
<item>@string/tab_baz</item> | |
</string-array> |
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
<!DOCTYPE resources [ | |
<!ENTITY foo "Foo"> | |
]> | |
<resources> | |
<string name="app_name">&foo;</string> | |
<string name="busy_warning">Sorry, &foo; is working hard, please try again in a moment.</string> | |
<string name="trademark">&foo; is a registerd trademark, all rights reserved.</string> | |
</resources> |
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
<resources xmlns:tools="http://schemas.android.com/tools" tools:locale="pl"> |
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
<resources xmlns:tools="http://schemas.android.com/tools" tools:locale="pl"> | |
<plurals name="numberOfSongsAvailable"> | |
<item quantity="one">Znaleziono %d piosenkę.</item> | |
<item quantity="few">Znaleziono %d piosenki.</item> | |
<item quantity="many">Znaleziono %d piosenek.</item> | |
<item quantity="other">Liczba znalezionych piosenek: %d.</item> | |
</plurals> | |
</resources> |
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
<resources xmlns:tools="http://schemas.android.com/tools" tools:locale="pl"> | |
<plurals name="numberOfSongsAvailable"> | |
<item quantity="one">Znaleziono %d piosenkę.</item> | |
<item quantity="few">Znaleziono %d piosenki.</item> | |
<item quantity="other">Znaleziono %d piosenek.</item> | |
</plurals> | |
</resources> |
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
val text = resources.getString(R.string.welcome_message, 4) //"You have 4 new messages." |
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
deps: | |
brew: | |
- name: git | |
- name: curl | |
- name: unzip | |
apt_get: | |
- name: git | |
- name: curl | |
- name: unzip | |
- name: libglu1-mesa |
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
inputs: | |
- version: 0.3.1-beta | |
opts: | |
title: "Flutter version" | |
summary: Flutter version including channel. Without `v` prefix. E.g. `0.2.8-alpha` or `0.3.0-dev`. | |
is_expand: true | |
is_required: true | |
- working_dir: $BITRISE_SOURCE_DIR | |
opts: |
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
// Config ... | |
type Config struct { | |
Version string `env:"version,required"` | |
WorkingDir string `env:"working_dir,dir"` | |
Commands []string `env:"commands,required"` | |
} |