File tree Expand file tree Collapse file tree 12 files changed +313
-224
lines changed
java/com/adityaarora/liveedgedetection
src/main/java/com/adityaarora/liveedgedetection Expand file tree Collapse file tree 12 files changed +313
-224
lines changed Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
33android {
4- compileSdkVersion 29
4+ compileSdkVersion 33
55 defaultConfig {
66 applicationId " com.adityaarora.liveedgedetection"
77 minSdkVersion 21
8- targetSdkVersion 29
8+ targetSdkVersion 33
99 versionCode 1
1010 versionName " 1.0"
11- testInstrumentationRunner " android.support .test.runner.AndroidJUnitRunner"
11+ testInstrumentationRunner " androidx .test.runner.AndroidJUnitRunner"
1212 }
13+
14+ compileOptions {
15+ sourceCompatibility JavaVersion . VERSION_1_8
16+ targetCompatibility JavaVersion . VERSION_1_8
17+ }
18+
1319 buildTypes {
1420 release {
1521 minifyEnabled false
@@ -20,10 +26,10 @@ android {
2026
2127dependencies {
2228 implementation fileTree(include : [' *.jar' ], dir : ' libs' )
23- implementation ' com.android.support :appcompat-v7:26.1.0 '
24- implementation ' com.android.support.constraint:constraint-layout:1 .1.3 '
25- testImplementation ' junit:junit:4.13'
26- androidTestImplementation ' com.android.support. test:runner:1.0 .2'
27- androidTestImplementation ' com.android.support. test.espresso:espresso-core:3.0.2 '
29+ implementation ' androidx.appcompat :appcompat:1.6.1 '
30+ implementation ' androidx.constraintlayout:constraintlayout:2 .1.4 '
31+ testImplementation ' junit:junit:4.13.2 '
32+ androidTestImplementation ' androidx. test:runner:1.5 .2'
33+ androidTestImplementation ' androidx. test.espresso:espresso-core:3.5.1 '
2834 implementation project(' :liveedgedetection' )
2935}
Original file line number Diff line number Diff line change 44import android .content .Intent ;
55import android .graphics .Bitmap ;
66import android .os .Bundle ;
7- import android .support .v7 .app .AppCompatActivity ;
87import android .widget .ImageView ;
98
9+ import androidx .appcompat .app .AppCompatActivity ;
10+
1011import com .adityaarora .liveedgedetection .activity .ScanActivity ;
1112import com .adityaarora .liveedgedetection .constants .ScanConstants ;
1213import com .adityaarora .liveedgedetection .util .ScanUtils ;
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
2- <android .support.constraint .ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
2+ <androidx .constraintlayout.widget .ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
33 xmlns : tools =" http://schemas.android.com/tools"
44 android : layout_width =" match_parent"
55 android : layout_height =" match_parent"
1212 android : layout_height =" match_parent"
1313 android : scaleType =" center" />
1414
15- </android .support.constraint .ConstraintLayout>
15+ </androidx .constraintlayout.widget .ConstraintLayout>
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
77 jcenter()
88 }
99 dependencies {
10- classpath ' com.android.tools.build:gradle:3.6.3 '
10+ classpath ' com.android.tools.build:gradle:3.6.4 '
1111 classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
1212
1313 // NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ org.gradle.jvmargs=-Xmx1536m
1414# This option should only be used with decoupled projects. More details, visit
1515# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1616# org.gradle.parallel=true
17+ android.useAndroidX =true
Original file line number Diff line number Diff line change 1- # Fri Mar 03 23:14:26 CET 2023
1+ # Thu Apr 13 16:29:32 CEST 2023
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-5.6 .4-bin.zip
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.9 .4-bin.zip
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments