Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #121 from VarunAggarwal1998/Habeeb-Dashti
Browse files Browse the repository at this point in the history
[FIX] Removed the deprecated use of setTextAppearance
  • Loading branch information
habeebdashti authored Oct 13, 2023
2 parents 6b9deb9 + 5e4e4a0 commit ecbbc1e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
28 changes: 23 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
apply plugin: 'com.android.application'

buildscript {
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0-beta01'
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.2.1.3168'
}
}

plugins {
id "org.sonarqube" version "4.2.1.3168"
}

apply plugin: 'com.android.application'
apply plugin: 'org.sonarqube'

sonarqube {
properties {
property "sonar.projectName", "Group 8 SOEN 6431"
property "sonar.projectKey", "Group-8-SOEN-6431"
property "sonar.host.url", "http://localhost:9000"
property "sonar.login", "sqp_7f8adc6706b839b752be96c5d687384252602ab5"
}
}

Expand Down Expand Up @@ -131,10 +149,10 @@ dependencies {
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.mediarouter:mediarouter:1.4.0'
implementation 'androidx.mediarouter:mediarouter:1.6.0'

androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1024m
systemProp.sonar.host.url=http://localhost:9000

0 comments on commit ecbbc1e

Please sign in to comment.