Skip to content

Instantly share code, notes, and snippets.

View yuvaraj119's full-sized avatar
๐Ÿ˜
Life is a Race

Yuvaraj Yadav yuvaraj119

๐Ÿ˜
Life is a Race
View GitHub Profile
@yuvaraj119
yuvaraj119 / artifactory.gradle
Created September 11, 2023 20:20 — forked from ivanempire/artifactory.gradle
Companion gist for setting up Artifactory in Gradle
// Goes into your root build.gradle for initial project setup
buildscript {
repositories {
google()
jcenter() // You'll need jcenter, ignore the warning - you know, like real devs do :D
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.1.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
@yuvaraj119
yuvaraj119 / horizontal_progress_demo.xml
Created January 16, 2018 05:47 — forked from Antarix/horizontal_progress_demo.xml
Android Custom horizontal ProgressBar emample
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progress_limit"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"