This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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" |