Skip to content

Instantly share code, notes, and snippets.

View marcohc's full-sized avatar
🤓

Marco HC marcohc

🤓
View GitHub Profile
<html>
<body>
<h1>Terms of Use</h1>
<p>Financiator is an application for various platforms, developed and offered to you by Disegnator Apps Development ("Provider"). It enables its users to track and manage personal finance and
analyze their income and expenses. Your use of the Financiator application and all the related services provided through it by Provider (collectively referred as "Financiator") is subject
to the following terms (“Terms”), which upon your acceptance form a legally binding agreement between you and the Provider (“Agreement”). For the avoidance of doubt, such agreement is
concluded solely between you and the Provider and there are no other parties to it.
</p>
@marcohc
marcohc / build.gradle
Last active April 13, 2021 04:23
Generate multiple apks for different architectures using Gradle
apply plugin: 'com.android.application'
android {
// To create different apk per abi
splits {
abi {
enable true
reset()
include 'armeabi', 'armeabi-v7a', 'x86'