Skip to content

Instantly share code, notes, and snippets.

View graffiti75's full-sized avatar
🏠
Working from home

Rodrigo Cericatto graffiti75

🏠
Working from home
View GitHub Profile
@graffiti75
graffiti75 / .GravityTilt
Last active April 28, 2025 16:31
All files needed to run the GravityTilt project
https://github.com/graffiti75/GravityTilt
@graffiti75
graffiti75 / .SpringBootCrashCourse error
Last active April 16, 2025 18:19
Output showed on Android Studio (Run tab) when I try to run the SpringBootCrashCourseApplication.kt class
This GIST shows the output Android Studio (Run tab) retrieves when I try to run the SpringBootCrashCourseApplication.kt class.
https://github.com/graffiti75/ThousandsSeparator
https://github.com/graffiti75/MarsWeatherCard
@graffiti75
graffiti75 / .DawnDusk
Last active April 8, 2025 17:37
All files needed to run the DawnDusk project
https://github.com/graffiti75/DawnDusk
@graffiti75
graffiti75 / Runique failed.txt
Created April 1, 2025 22:30
Gradle Error in Runique project
FAILURE: Build completed with 2 failures.
1: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':run:location:compileDebugJavaWithJavac'.
> Could not resolve all files for configuration ':run:location:debugCompileClasspath'.
> Could not find androidx.compose.ui:ui-tooling:.
Required by:
project :run:location
@graffiti75
graffiti75 / 001_AudioWaveFormUI.txt
Last active March 25, 2025 17:24
AudioWaveformUI
All the files I've used to create this Jetpack Compose UI Component are showed below.
@graffiti75
graffiti75 / .How to track Location in Android
Last active April 21, 2023 04:29
How to track the user location in Android, using Kotlin, and dealing with ACCESS_FINE_LOCATION and ACCESS_BACKGROUND_LOCATION permissions
Changing name of this Gist.
/*
* Copyright 2018, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.7.20'
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"