Skip to content

Instantly share code, notes, and snippets.

View robertoallende's full-sized avatar

Roberto Allende robertoallende

View GitHub Profile
@robertoallende
robertoallende / .gitignore
Created November 24, 2023 21:48
GitIgnore for KMM Projects
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
<code_scheme name="GoogleStyle" version="173">
<option name="OTHER_INDENT_OPTIONS">
<value>
<option name="INDENT_SIZE" value="2" />
<option name="CONTINUATION_INDENT_SIZE" value="4" />
<option name="TAB_SIZE" value="2" />
</value>
</option>
<AndroidXmlCodeStyleSettings>
<option name="LAYOUT_SETTINGS">

To run Codecov from bash

./gradlew jacocoTestReport

bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN

Source: Codecov Gradle Example

@robertoallende
robertoallende / SMSRetriever.md
Last active October 23, 2019 21:45
Request SMS Verification in an Android App
@robertoallende
robertoallende / TDDMobile.md
Last active November 19, 2018 20:34
A collection of reading material related to the talk Fearless Coding with Test Driven Development presented in Mobile Refresh 2018 at Victoria University, Wellington, NZ
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
public static Intent makeIntent(HashMap<String, String> groups, Context context) {
Intent intent = new Intent(context, GroupListActivity.class);
intent.putExtra(GROUPS, groups);
return intent;
}