This file contains 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
language: android | |
jdk: oraclejdk8 | |
sudo: false | |
env: | |
global: | |
- MAJOR_MINOR=0.1 | |
- RELEASE_PKG_FOLDER_PATH=app/build/outputs/apk/ | |
- RELEASE_PKG_FILE=YourAppName-${TRAVIS_BRANCH}-${MAJOR_MINOR}.${TRAVIS_BUILD_NUMBER}.apk |
This file contains 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
import org.jetbrains.spek.api.Spek | |
import org.jetbrains.spek.api.dsl.given | |
import org.jetbrains.spek.api.dsl.it | |
import org.junit.Assert | |
class ExampleSpekTest : Spek({ | |
val x = 2 | |
val y = 3 |
This file contains 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
// Create the widget | |
final DatePicker input = new DatePicker(context); | |
.... | |
final View view = (View) input; | |
// Wrap the widget in a LinearLayout to prevent it from being chopped | |
final LinearLayout widgetWrapper = new LinearLayout(context); | |
final LinearLayout.LayoutParams parentParams = new LinearLayout.LayoutParams( | |
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); | |
parentParams.gravity = Gravity.CENTER; |
This file contains 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
function colorWorkdays() { | |
// get the sheet we want to work with. | |
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); | |
// determine how long the sheet is | |
var lastColumn = sheet.getLastColumn() + 1; | |
// the sheet indexes are 1 based :-O | |
var workDaysHeaderRowIndex = 1; | |
var mondayColor = "#2fb726"; | |
var tuesdayColor = "#ccffcc"; |
This file contains 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
package cucumber.runtime.android; | |
import android.content.Context; | |
import android.support.test.InstrumentationRegistry; | |
import org.junit.AfterClass; | |
import org.junit.BeforeClass; | |
import org.junit.ClassRule; | |
import org.junit.runner.Description; | |
import org.junit.runner.notification.RunNotifier; |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<!-- This Source Code Form is subject to the terms of the Mozilla Public | |
- License, v. 2.0. If a copy of the MPL was not distributed with this | |
- file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | |
<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/credit_cards_wrapper" | |
android:layout_width="match_parent" |
This file contains 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
Index: app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
diff --git a/app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt b/app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt | |
--- a/app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt (revision 99759dd728a07bcb4eb619c7b1d76d9f279516e5) | |
+++ b/app/src/main/java/org/mozilla/fenix/home/HomeFragment.kt (date 1662363996585) | |
@@ -208,10 +208,14 @@ | |
// DO NOT ADD ANYTHING ABOVE THIS getProfilerTime CALL! |
This file contains 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
Index: app/src/main/java/org/mozilla/fenix/home/WallpapersObserver.kt | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
diff --git a/app/src/main/java/org/mozilla/fenix/home/WallpapersObserver.kt b/app/src/main/java/org/mozilla/fenix/home/WallpapersObserver.kt | |
--- a/app/src/main/java/org/mozilla/fenix/home/WallpapersObserver.kt (revision 30a8a25d8100271f63e38eba4ec26f99101f517a) | |
+++ b/app/src/main/java/org/mozilla/fenix/home/WallpapersObserver.kt (date 1662360155911) | |
@@ -87,11 +87,12 @@ | |
*/ |
This file contains 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
# Build GeckoView/Firefox for Android: | |
ac_add_options --enable-application=mobile/android | |
# Targeting the following architecture. | |
# For regular phones, no --target is needed. | |
# For x86 emulators (and x86 devices, which are uncommon): | |
# ac_add_options --target=i686 | |
# For newer phones or Apple silicon | |
ac_add_options --target=aarch64 | |
# For x86_64 emulators (and x86_64 devices, which are even less common): | |
# ac_add_options --target=x86_64 |
This file contains 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
##Probably the best series for the setup of your new smart card: | |
https://www.youtube.com/watch?v=rGZtlgNhAVU&list=PLmoQ11MXEmahVl_uJVH0-a3XJtMV59PBu | |
| |
----- | |
----- | |
------ | |
|
OlderNewer