Skip to content

Commit

Permalink
Add multidex to the auth app (firebase#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
samtstern authored Nov 9, 2017
1 parent ba4b3fb commit 940ac4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ cache:
- $HOME/.android/build-cache

before_script:
- echo y | ${ANDROID_HOME}tools/bin/sdkmanager --channel=3 "tools" "platform-tools" "build-tools;26.0.1" "platforms;android-26" "extras;google;m2repository"
- echo y | ${ANDROID_HOME}/tools/bin/sdkmanager --channel=3 "tools" "platform-tools" "build-tools;26.0.1" "platforms;android-26" "extras;google;m2repository"
script: ./build.sh
2 changes: 2 additions & 0 deletions auth/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ configurations.all {
}

dependencies {
compile 'com.android.support:multidex:1.0.2'

compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:animated-vector-drawable:26.1.0'
compile 'com.android.support:cardview-v7:26.1.0'
Expand Down
3 changes: 2 additions & 1 deletion auth/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:name="android.support.multidex.MultiDexApplication"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".ChooserActivity">
Expand All @@ -32,7 +33,7 @@
android:windowSoftInputMode="stateAlwaysHidden" />
<activity
android:name=".PhoneAuthActivity"
android:label="@string/label_phone_auth"></activity>
android:label="@string/label_phone_auth" />
<activity
android:name=".AnonymousAuthActivity"
android:label="@string/label_anonymous_auth" />
Expand Down

0 comments on commit 940ac4d

Please sign in to comment.