Skip to content

Commit

Permalink
Add github - 08/06/18 10:19
Browse files Browse the repository at this point in the history
  • Loading branch information
pahlevikun committed Jun 8, 2018
1 parent bb01c8e commit 9e873bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class MainActivity : AppCompatActivity() {
try {
val encrypted = DroidCrypt(this).startEncryptWithoutBase64("@12d", Algorithm.MD5.type, "MAKAN")
Logger.d("HASIL ENCRYPT", MainActivity::class.java.simpleName, encrypted.textInString)
print("adsf")
val decrypted = DroidCrypt(this).startDecryptWithoutBase64("@12d", Algorithm.MD5.type, encrypted)
Logger.d("HASIL DECRYPT", MainActivity::class.java.simpleName, decrypted.textInString)

Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
7 changes: 3 additions & 4 deletions droidcrypt/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'

group='com.github.pahlevikun'

android {
compileSdkVersion 27



defaultConfig {
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
Expand Down

0 comments on commit 9e873bf

Please sign in to comment.