Skip to content

Commit

Permalink
Merge pull request #32 from rudrankbasant/dev
Browse files Browse the repository at this point in the history
vitty connect
  • Loading branch information
rudrankbasant authored Aug 5, 2024
2 parents 3bafa79 + a0f709c commit 98b1cac
Show file tree
Hide file tree
Showing 87 changed files with 4,729 additions and 555 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ android {
storePassword keystoreProperties['storePassword']
}
}
compileSdkVersion 33
compileSdk 33
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.dscvit.vitty"
minSdkVersion 24
targetSdkVersion 33
versionCode 34
versionName "2.0.0"
versionCode 37
versionName "2.0.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.release
}
Expand All @@ -48,6 +48,7 @@ android {
}

buildFeatures {
viewBinding true
dataBinding true
}
}
Expand Down Expand Up @@ -102,4 +103,6 @@ dependencies {

// Timber for logs
implementation 'com.jakewharton.timber:timber:4.7.1'

implementation 'com.google.android.material:material:1.9.0'
}
6 changes: 5 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.VITTY">
android:theme="@style/Theme.VITTY"
android:usesCleartextTraffic="true">
<activity
android:name=".activity.AddInfoActivity"
android:exported="false" />
<activity
android:name=".activity.VITEventsActivity"
android:exported="false" />
Expand Down
Loading

0 comments on commit 98b1cac

Please sign in to comment.