Skip to content

Commit f175481

Browse files
authored
Merge pull request dubesar#546 from spacemonkey1101/master
dictionary app
2 parents 9c78d3c + ff671aa commit f175481

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1333
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx

Android/Android Apps/Dictionary/.idea/codeStyles/Project.xml

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Android/Android Apps/Dictionary/.idea/gradle.xml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Android/Android Apps/Dictionary/.idea/jarRepositories.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Android/Android Apps/Dictionary/.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Android/Android Apps/Dictionary/.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#Concepts used
2+
3+
- SearchView Widget
4+
- OnClickListener
5+
- Retrofit Library usage
6+
- Fetching data from an API
7+
8+
#Documentation and resources used
9+
10+
- For learning Retrofit
11+
https://www.androidhive.info/2016/05/android-working-with-retrofit-http-library/
12+
13+
- SearchView Widget
14+
https://developer.android.com/reference/androidx/appcompat/widget/SearchView
15+
16+
#Future Aspects of the app
17+
18+
- dding the Text to Speach Feature
19+
- Adding thesaurus, phonetics etc
20+
- Improve UI
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 30
5+
buildToolsVersion "30.0.0"
6+
7+
defaultConfig {
8+
applicationId "com.example.dictionary"
9+
minSdkVersion 16
10+
targetSdkVersion 30
11+
versionCode 1
12+
versionName "1.0"
13+
14+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15+
}
16+
17+
buildTypes {
18+
release {
19+
minifyEnabled false
20+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21+
}
22+
}
23+
}
24+
25+
dependencies {
26+
implementation fileTree(dir: "libs", include: ["*.jar"])
27+
implementation 'androidx.appcompat:appcompat:1.2.0'
28+
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
29+
implementation 'com.google.android.material:material:1.2.1'
30+
testImplementation 'junit:junit:4.12'
31+
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
32+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
33+
implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
34+
implementation "androidx.recyclerview:recyclerview:1.1.0"
35+
36+
implementation 'com.google.code.gson:gson:2.6.2'
37+
implementation 'com.squareup.retrofit2:retrofit:2.0.2'
38+
implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
39+
implementation("com.squareup.okhttp3:logging-interceptor:4.8.0")
40+
41+
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
42+
compile 'com.fasterxml.jackson.core:jackson-core:2.8.5'
43+
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.5'
44+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile

0 commit comments

Comments
 (0)