Skip to content

Instantly share code, notes, and snippets.

View kevalpatel2106's full-sized avatar
:bowtie:
while(true){ 👨🏻‍💻 }

Keval Patel kevalpatel2106

:bowtie:
while(true){ 👨🏻‍💻 }
View GitHub Profile
@kevalpatel2106
kevalpatel2106 / android-19-circle.yml
Created January 24, 2017 10:42 — forked from donnfelker/android-19-circle.yml
Sample CircleCI Configuration For an Android App
#
# Build configuration for Circle CI
#
general:
artifacts:
- /home/ubuntu/your-app-name/app/build/outputs/apk/
machine:
environment:
@kevalpatel2106
kevalpatel2106 / AndroidManifest.xml
Created July 27, 2017 12:00 — forked from riggaroo/AndroidManifest.xml
Custom Android Espresso Test Runner - Unlocking a Device, Granting Permission to turn animations off, turning the Screen on.
<?xml version="1.0" encoding="utf-8"?>
<!-- Put this file in the "debug" folder so it only gets merged into debug builds -->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.bookdash.android">
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<!-- Disable animations on debug builds so that the animations do not interfere with Espresso