Skip to content

Commit 1ecd6cf

Browse files
new Learn Android added
0 parents  commit 1ecd6cf

File tree

411 files changed

+30757
-0
lines changed

Some content is hidden

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

411 files changed

+30757
-0
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

.idea/codeStyles/Project.xml

+113
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 28
5+
defaultConfig {
6+
applicationId "com.Learning.com"
7+
minSdkVersion 21
8+
targetSdkVersion 28
9+
versionCode 2
10+
versionName "2.0"
11+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12+
}
13+
buildTypes {
14+
release {
15+
minifyEnabled false
16+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
17+
}
18+
}
19+
}
20+
21+
dependencies {
22+
implementation fileTree(include: ['*.jar'], dir: 'libs')
23+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
24+
implementation 'com.android.support:recyclerview-v7:27.0.0'
25+
implementation 'com.github.pahlevikun:droidcrypt:0.0.1'
26+
implementation 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
27+
implementation 'com.android.support:cardview-v7:28.0.0'
28+
implementation 'com.github.kbiakov:CodeView-Android:1.3.2'
29+
implementation 'gr.escsoft.michaelprimez.searchablespinner:SearchableSpinner:1.0.9'
30+
implementation 'com.android.support:support-v4:28.0.0'
31+
implementation 'com.android.volley:volley:1.1.1'
32+
implementation 'me.biubiubiu.justifytext:library:1.1'
33+
implementation 'com.github.delight-im:Android-AdvancedWebView:v3.0.0'
34+
implementation 'com.github.Adilhusen:circle-progress-ad-android-:1.0'
35+
implementation 'com.github.appersiano:imageprogressview:-SNAPSHOT'
36+
implementation 'com.wrapp.floatlabelededittext:library:0.0.6'
37+
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
38+
implementation 'com.android.support:design:28.0.0'
39+
implementation 'org.jsoup:jsoup:1.10.3'
40+
implementation 'com.master.android:glideimageview:2.1'
41+
implementation 'com.andrognito.patternlockview:patternlockview:1.0.0'
42+
implementation 'com.github.clans:fab:1.6.4'
43+
implementation 'com.google.android.gms:play-services-vision:11.4.0'
44+
implementation 'com.github.mahimrocky:TextRecognizer:1.0.0'
45+
implementation 'com.github.delight-im:Android-AdvancedWebView:v3.0.0'
46+
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
47+
implementation 'com.android.support:appcompat-v7:28.0.0'
48+
implementation 'com.google.firebase:firebase-ads:17.2.0'
49+
implementation 'Codeview-1.0.0:webviewcode:1.0.0'
50+
implementation 'com.github.tylerfilla:PanView:0.1.0'
51+
implementation 'org.apache.commons:commons-lang3:3.5'
52+
implementation 'com.github.tiagohm:CodeView:0.4.0'
53+
implementation 'com.master.android:glideimageview:2.1'
54+
implementation 'com.github.blikoon:QRCodeScanner:0.1.2'
55+
implementation 'com.itextpdf:itextg:5.5.10'
56+
implementation 'com.jakewharton:butterknife:8.8.1'
57+
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
58+
testImplementation 'junit:junit:4.12'
59+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
60+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
61+
62+
63+
}

app/proguard-rules.pro

+21
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

app/release/app-release.aab

9.69 MB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.Learning.com;
2+
3+
import android.content.Context;
4+
import android.support.test.InstrumentationRegistry;
5+
import android.support.test.runner.AndroidJUnit4;
6+
7+
import org.junit.Test;
8+
import org.junit.runner.RunWith;
9+
10+
import static org.junit.Assert.*;
11+
12+
/**
13+
* Instrumented test, which will execute on an Android device.
14+
*
15+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
16+
*/
17+
@RunWith(AndroidJUnit4.class)
18+
public class ExampleInstrumentedTest {
19+
@Test
20+
public void useAppContext() {
21+
// Context of the app under test.
22+
Context appContext = InstrumentationRegistry.getTargetContext();
23+
24+
assertEquals("com.Learning.com", appContext.getPackageName());
25+
}
26+
}

app/src/main/AndroidManifest.xml

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.Learning.com">
4+
5+
<uses-feature
6+
android:name="android.hardware.camera"
7+
android:required="true" />
8+
9+
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
10+
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
11+
<uses-permission android:name="android.permission.VIBRATE" />
12+
<uses-permission android:name="android.permission.INTERNET" />
13+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
14+
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
15+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
16+
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
17+
<uses-permission android:name="android.permission.CAMERA" />
18+
<uses-permission android:name="android.permission.RECORD_AUDIO" />
19+
20+
<uses-feature android:name="android.hardware.camera.autofocus" />
21+
22+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
23+
24+
<application
25+
android:allowBackup="true"
26+
android:icon="@drawable/icon"
27+
android:label="@string/app_name"
28+
android:supportsRtl="true"
29+
android:theme="@style/AppTheme">
30+
<activity android:name=".Introduction"></activity>
31+
<activity android:name=".SearchView_demo" />
32+
<activity
33+
android:name=".TabbedActivity"
34+
android:label="@string/title_activity_tabbed"
35+
android:theme="@style/AppTheme.NoActionBar" />
36+
<activity
37+
android:name=".NavigationDrawer"
38+
android:label="@string/title_activity_navigation_drawer"
39+
android:theme="@style/AppTheme.NoActionBar" />
40+
<activity
41+
android:name=".BottomNavigation"
42+
android:label="@string/title_activity_bottom_navigation" />
43+
44+
<meta-data
45+
android:name="com.google.android.gms.vision.DEPENDENCIES"
46+
android:value="ocr" />
47+
48+
<service
49+
android:name=".BackgroundServices"
50+
android:enabled="true"
51+
android:exported="true" />
52+
53+
<activity android:name=".Image_text_demo" />
54+
<activity android:name=".Fragment_demo" />
55+
<activity android:name=".SimpleIntent_demo" />
56+
<activity android:name=".SecondActivity" />
57+
<activity android:name=".Bundle_passing_demo" />
58+
<activity android:name=".Dialer_demo" />
59+
<activity android:name=".ExpandableRecyclerView" />
60+
<activity android:name=".ContactUs" />
61+
<activity android:name=".Advance" />
62+
<activity android:name=".Library" />
63+
<activity android:name=".Basic" />
64+
<activity
65+
android:name=".BaseScreen"
66+
android:label="@string/title_activity_base_screen"
67+
android:theme="@style/noaction" />
68+
<activity android:name=".MainActivity">
69+
<intent-filter>
70+
<action android:name="android.intent.action.MAIN" />
71+
72+
<category android:name="android.intent.category.LAUNCHER" />
73+
</intent-filter>
74+
</activity>
75+
76+
<meta-data
77+
android:name="com.google.android.gms.ads.APPLICATION_ID"
78+
android:value="ca-app-pub-5555883160769534~2999857530" />
79+
<meta-data
80+
android:name="firebase_analytics_collection_deactivated"
81+
android:value="true" />
82+
83+
<provider
84+
android:name="android.support.v4.content.FileProvider"
85+
android:authorities="${applicationId}.provider"
86+
android:exported="false"
87+
android:grantUriPermissions="true">
88+
<meta-data
89+
android:name="android.support.FILE_PROVIDER_PATHS"
90+
android:resource="@xml/provider_paths" />
91+
</provider>
92+
</application>
93+
94+
</manifest>

0 commit comments

Comments
 (0)