Skip to content

Commit

Permalink
algoizer-v1.3.apk added, updated sdk and target version
Browse files Browse the repository at this point in the history
  • Loading branch information
Porvil committed Jul 29, 2021
1 parent e3ce444 commit f501d60
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
compileSdkVersion 31

defaultConfig {
applicationId "com.iiitd.dsavisualizer"
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 31
versionCode 1
versionName "1.0"
}
Expand All @@ -21,11 +21,11 @@ android {

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'

// May be Used By SnackBar
implementation 'com.google.android.material:material:1.3.0'
implementation 'com.google.android.material:material:1.4.0'

// ViewAnimator [ Library for Animating Views ]
implementation 'com.github.florent37:viewanimator:1.1.0'
Expand Down
Binary file not shown.
15 changes: 15 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<activity
android:name=".runapp.activities.SplashActivity"
android:launchMode="standard"
android:exported="true"
android:screenOrientation="sensorLandscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -29,6 +30,7 @@
<activity
android:name=".runapp.activities.HomeActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -39,6 +41,7 @@
<activity
android:name=".runapp.activities.GraphsActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -49,11 +52,13 @@
<activity
android:name=".runapp.activities.AboutActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape" />

<activity
android:name=".runapp.activities.ThemesActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -64,6 +69,7 @@
<activity
android:name=".runapp.activities.SortingActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -74,6 +80,7 @@
<activity
android:name=".runapp.activities.TreesActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -84,6 +91,7 @@
<activity
android:name=".datastructures.graphs.GraphActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -94,6 +102,7 @@
<activity
android:name=".algorithms.sorting.bubble.BubbleSortActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -104,6 +113,7 @@
<activity
android:name=".algorithms.sorting.selection.SelectionSortActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -114,6 +124,7 @@
<activity
android:name=".algorithms.sorting.insertion.InsertionSortActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -124,6 +135,7 @@
<activity
android:name=".algorithms.sorting.merge.MergeSortActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -134,6 +146,7 @@
<activity
android:name=".algorithms.sorting.quick.QuickSortActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -144,6 +157,7 @@
<activity
android:name=".datastructures.trees.bst.BSTActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand All @@ -154,6 +168,7 @@
<activity
android:name=".datastructures.trees.avl.AVLActivity"
android:launchMode="standard"
android:exported="false"
android:screenOrientation="sensorLandscape">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.android.tools.build:gradle:4.2.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit f501d60

Please sign in to comment.