mirror of https://github.com/tasks/tasks
Drop support for Lollipop and Lollipop MR1
parent
79ca62cbea
commit
fbeef45bb9
@ -1,8 +0,0 @@
|
|||||||
package org.tasks.security;
|
|
||||||
|
|
||||||
public interface Encryption {
|
|
||||||
|
|
||||||
String encrypt(String text);
|
|
||||||
|
|
||||||
String decrypt(String text);
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
package org.tasks.security;
|
|
||||||
|
|
||||||
public class NoEncryption implements Encryption {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String encrypt(String text) {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String decrypt(String text) {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<item>
|
|
||||||
<shape android:shape="oval">
|
|
||||||
|
|
||||||
<size
|
|
||||||
android:height="24dp"
|
|
||||||
android:width="24dp" />
|
|
||||||
|
|
||||||
<solid android:color="#FF000000" />
|
|
||||||
</shape>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<shape android:shape="oval">
|
|
||||||
|
|
||||||
<size
|
|
||||||
android:height="25dp"
|
|
||||||
android:width="25dp" />
|
|
||||||
|
|
||||||
<solid android:color="@android:color/transparent" />
|
|
||||||
|
|
||||||
<stroke
|
|
||||||
android:color="@color/text_tertiary"
|
|
||||||
android:width="1dp" />
|
|
||||||
</shape>
|
|
||||||
</item>
|
|
||||||
</layer-list>
|
|
||||||
@ -1,10 +1,27 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
android:shape="oval">
|
<item>
|
||||||
|
<shape android:shape="oval">
|
||||||
|
|
||||||
<size
|
<size
|
||||||
android:height="24dp"
|
android:height="24dp"
|
||||||
android:width="24dp" />
|
android:width="24dp" />
|
||||||
|
|
||||||
<solid android:color="#FF000000" />
|
<solid android:color="#FF000000" />
|
||||||
</shape>
|
</shape>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<shape android:shape="oval">
|
||||||
|
|
||||||
|
<size
|
||||||
|
android:height="25dp"
|
||||||
|
android:width="25dp" />
|
||||||
|
|
||||||
|
<solid android:color="@android:color/transparent" />
|
||||||
|
|
||||||
|
<stroke
|
||||||
|
android:color="@color/text_tertiary"
|
||||||
|
android:width="1dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
||||||
@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<integer name="calendar_view_visible">0</integer> <!-- View.VISIBLE -->
|
|
||||||
</resources>
|
|
||||||
Loading…
Reference in New Issue