Commit 77a58b36 authored by Divyanshu Bhargava's avatar Divyanshu Bhargava

minor changes

parent 79fd22f3
...@@ -50,11 +50,4 @@ ...@@ -50,11 +50,4 @@
<!-- Default Background Color --> <!-- Default Background Color -->
<color name="default_background">#FAFAFA</color> <color name="default_background">#FAFAFA</color>
<!--Color Palettes-->
<color name="color_red">#FF5252</color>
<color name="color_yellow">#FFEB3B</color>
<color name="color_green">#00C853</color>
<color name="color_blue">#00B0FF</color>
<color name="color_pink">#D500F9</color>
<color name="color_brown">#8D6E63</color>
</resources> </resources>
...@@ -109,9 +109,4 @@ ...@@ -109,9 +109,4 @@
<item name="actionModeCloseDrawable">@drawable/ic_close_white_24dp</item> <item name="actionModeCloseDrawable">@drawable/ic_close_white_24dp</item>
</style> </style>
<style name="DrawingDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:windowIsFloating">false</item>
<item name="android:windowBackground">@color/white</item>
</style>
</resources> </resources>
\ No newline at end of file
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.2.31'
apply from: rootProject.file('dependencies.gradle') apply from: rootProject.file('dependencies.gradle')
repositories { repositories {
...@@ -21,7 +19,7 @@ buildscript { ...@@ -21,7 +19,7 @@ buildscript {
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }
} }
allprojects { allprojects {
......
...@@ -3,8 +3,6 @@ apply plugin: 'com.android.library' ...@@ -3,8 +3,6 @@ apply plugin: 'com.android.library'
android { android {
compileSdkVersion 27 compileSdkVersion 27
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 27 targetSdkVersion 27
...@@ -32,11 +30,10 @@ dependencies { ...@@ -32,11 +30,10 @@ dependencies {
implementation libraries.kotlin implementation libraries.kotlin
implementation libraries.androidKtx implementation libraries.androidKtx
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
} }
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-android-extensions'
\ No newline at end of file
...@@ -14,7 +14,6 @@ import android.graphics.Bitmap ...@@ -14,7 +14,6 @@ import android.graphics.Bitmap
import android.app.Activity import android.app.Activity
import java.io.ByteArrayOutputStream import java.io.ByteArrayOutputStream
class DrawingActivity : AppCompatActivity() { class DrawingActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment