Skip to content

Commit

Permalink
update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-aniketj committed Aug 23, 2022
1 parent 44d4102 commit ca9043d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ android {
targetSdk 32
versionCode 4
versionName "1.0.4"
multiDexEnabled true

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -55,4 +56,6 @@ dependencies {
implementation 'com.intuit.sdp:sdp-android:1.1.0'
//Lotti files
implementation 'com.airbnb.android:lottie:5.2.0'

implementation 'androidx.multidex:multidex:2.0.1'
}
7 changes: 5 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
android:theme="@style/Theme.WeatherApp">
<activity
android:name=".SplashScreen"
android:exported="true">
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -30,7 +33,7 @@
android:exported="false"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden"
tools:ignore="LockedOrientationActivity"/>
tools:ignore="LockedOrientationActivity" />
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ public void onClick(View view) {
try {
//it was deprecated but still work
startActivityForResult(intent,REQUEST_CODE_EXTRA_INPUT);

}catch (Exception e){
Log.d("Error Voice", "Mic Error: "+e);
}
Expand Down

0 comments on commit ca9043d

Please sign in to comment.