Skip to content

Commit

Permalink
Lihat lisensi.txt/README.txt bro. SUDAH FIX. Update Registrasi online…
Browse files Browse the repository at this point in the history
…, Dokter Onine
  • Loading branch information
mas-elkhanza committed Apr 8, 2018
1 parent f9f2106 commit 6114f2e
Show file tree
Hide file tree
Showing 3,437 changed files with 23,649 additions and 251,728 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
20 changes: 20 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures

# Android
google-services.json

# Keystore files
*.jks

# Windows thumbnail db
Thumbs.db

# OSX files
.DS_Store
Binary file not shown.
29 changes: 29 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/.idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/.idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
53 changes: 53 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.1"

defaultConfig {
applicationId "org.basoro.damanhuri"
minSdkVersion 16
targetSdkVersion 26
versionCode 5
versionName "1.5"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

buildTypes {
debug {
minifyEnabled false
shrinkResources false
versionNameSuffix '-DEBUG'
}
release {
minifyEnabled true
shrinkResources false
versionNameSuffix '-RELEASE'
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
exclude 'LICENSE.txt'
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:26.0.2'
compile 'com.android.support:design:26.0.2'
compile 'pub.devrel:easypermissions:0.4.2'

// Firebase
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-messaging:11.0.4'
testCompile 'junit:junit:4.12'
}
// Add to the bottom of the file
//apply plugin: 'com.google.gms.google-services'
19 changes: 19 additions & 0 deletions ApkRegistrasiOnline/AplikasiDamanhuri/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Android\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

-keep class !android.support.v7.internal.view.menu.**,android.support.** {*;}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.basoro.damanhuri;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.basoro.damanhuri">

<!-- Normal permissions, access automatically granted to app -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>

<!-- Runtime permissions -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@android:style/Theme.NoTitleBar">
<activity
android:name="org.basoro.damanhuri.activities.SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

<activity
android:name="org.basoro.damanhuri.activities.MainActivity"
android:label="@string/app_main_activity"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat"/>

</application>
</manifest>
Loading

0 comments on commit 6114f2e

Please sign in to comment.