Skip to content

Commit

Permalink
Merge pull request #180 from dsciitpatna/development
Browse files Browse the repository at this point in the history
First release ready
  • Loading branch information
atm1504 authored Jun 16, 2019
2 parents 7a364ff + 6621aef commit 8bc3a58
Show file tree
Hide file tree
Showing 42 changed files with 2,995 additions and 457 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ It is advisable to clone only the development branch using the following command
* Make all the PR's in development branch.
* Contact the mentors at Gitter or Slack channel before contributing.

### Team Members
* Amartya Mondal
* Aman Jee
* Anmol Chaddha
* Aparsh Gupta
* Somenath Sarkar
* Oindrilla
* Bhavna Haritsa
16 changes: 12 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencies {
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.google.firebase:firebase-storage:17.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
Expand All @@ -44,15 +45,22 @@ dependencies {
implementation 'com.firebaseui:firebase-ui-firestore:4.3.1'
//firebase dependencies
implementation 'com.google.android.gms:play-services-auth:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.2.1'
implementation 'com.google.firebase:firebase-messaging:17.6.0'
implementation 'com.google.firebase:firebase-firestore:18.2.0'
implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.google.firebase:firebase-auth:17.0.0'
implementation 'com.google.firebase:firebase-messaging:18.0.0'
implementation 'com.google.firebase:firebase-firestore:19.0.0'
implementation 'com.google.firebase:firebase-core:16.0.9'
//Glide
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation 'com.wang.avi:library:2.1.3'
implementation 'me.panavtec:drawableview:0.6.0'
implementation 'com.pes.materialcolorpicker:library:1.2.0'
//smilie rating
implementation 'com.github.sujithkanna:smileyrating:1.6.8'
//youtuvelib
implementation 'com.github.PierfrancescoSoffritti:AndroidYouTubePlayer:7.0.1'
// code generator for view
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor "com.jakewharton:butterknife-compiler:8.8.1"
}
apply plugin: 'com.google.gms.google-services'
36 changes: 29 additions & 7 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dsciitp.shabd">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />

<application
android:name=".MyApplication"
android:allowBackup="true"
Expand All @@ -10,21 +14,38 @@
android:roundIcon="@drawable/shabd"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Setting.LanguageSettingActivity">

</activity>
<activity android:name=".Learn.Video.VideoActivity"
android:parentActivityName=".Learn.LearnActivity"
android:configChanges="keyboardHidden|screenSize"
android:screenOrientation="portrait"/>
<activity
android:name=".Learn.ColorGame.ColorGameActivity"
android:parentActivityName=".Learn.LearnActivity"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden|screenSize"/>
<activity
android:name=".Learn.Quiz.QuizActivity"
android:parentActivityName=".Learn.LearnActivity"
android:configChanges="orientation|keyboardHidden|screenSize"/>
<activity
android:name=".Setting.LanguageSettingActivity"
android:parentActivityName=".MainActivity"
android:configChanges="orientation|keyboardHidden|screenSize"/>
<activity
android:name=".Learn.Drawing.DrawingActivity"
android:parentActivityName=".Learn.LearnActivity"
android:screenOrientation="portrait"></activity>
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden|screenSize"/>
<activity
android:name=".Learn.Piano.PianoActivity"
android:screenOrientation="landscape"
android:theme="@style/AppTheme.NoActionBar"></activity>
android:theme="@style/AppTheme.NoActionBar"
android:configChanges="orientation|keyboardHidden|screenSize"/>
<activity
android:name=".signin.SigninActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
android:theme="@style/AppTheme.NoActionBar"
android:configChanges="orientation|keyboardHidden|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -35,7 +56,8 @@
android:name=".Dictionary.DictionaryActivity"
android:label="Dictionary"
android:parentActivityName=".MainActivity"
android:windowSoftInputMode="stateHidden">
android:windowSoftInputMode="stateHidden"
android:configChanges="orientation|keyboardHidden|screenSize">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
Expand Down
Loading

0 comments on commit 8bc3a58

Please sign in to comment.