Commit uncommitted changes
This commit is contained in:
parent
7bea4d5308
commit
e9647acf49
7 changed files with 23 additions and 23 deletions
Binary file not shown.
|
@ -24,7 +24,7 @@
|
||||||
</value>
|
</value>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="JDK" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectType">
|
<component name="ProjectType">
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<component name="ProjectModuleManager">
|
<component name="ProjectModuleManager">
|
||||||
<modules>
|
<modules>
|
||||||
<module fileurl="file://$PROJECT_DIR$/SLAM.iml" filepath="$PROJECT_DIR$/SLAM.iml" />
|
<module fileurl="file://$PROJECT_DIR$/SLAM.iml" filepath="$PROJECT_DIR$/SLAM.iml" />
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/Slam-Android.iml" filepath="$PROJECT_DIR$/Slam-Android.iml" />
|
||||||
<module fileurl="file://$PROJECT_DIR$/mobile/mobile.iml" filepath="$PROJECT_DIR$/mobile/mobile.iml" />
|
<module fileurl="file://$PROJECT_DIR$/mobile/mobile.iml" filepath="$PROJECT_DIR$/mobile/mobile.iml" />
|
||||||
</modules>
|
</modules>
|
||||||
</component>
|
</component>
|
||||||
|
|
|
@ -19,34 +19,33 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
//implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
||||||
implementation 'com.android.support:appcompat-v7:27.0.2'
|
implementation 'com.android.support:design:27.1.1'
|
||||||
implementation 'com.android.support:design:27.0.2'
|
implementation 'com.android.support:support-v4:27.1.1'
|
||||||
implementation 'com.android.support:support-v4:27.0.2'
|
implementation 'com.android.support:support-v13:27.1.1'
|
||||||
implementation 'com.android.support:support-v13:27.0.2'
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
||||||
implementation 'com.android.support:cardview-v7:27.0.2'
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
||||||
implementation 'com.android.support:recyclerview-v7:27.0.2'
|
implementation 'com.android.support:support-emoji:27.1.1'
|
||||||
implementation 'com.android.support:support-emoji:27.0.2'
|
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
|
||||||
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
||||||
|
|
||||||
// The holy ButterKnife \o/
|
// The holy ButterKnife \o/
|
||||||
compile 'com.jakewharton:butterknife:8.8.1'
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
||||||
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
||||||
|
|
||||||
// External UI
|
// External UI
|
||||||
compile 'de.hdodenhof:circleimageview:2.0.0'
|
implementation 'de.hdodenhof:circleimageview:2.0.0'
|
||||||
|
|
||||||
// Smack
|
// Smack
|
||||||
compile "org.igniterealtime.smack:smack-android-extensions:$smackVersion"
|
implementation "org.igniterealtime.smack:smack-android-extensions:$smackVersion"
|
||||||
compile "org.igniterealtime.smack:smack-omemo-signal:$smackVersion"
|
implementation "org.igniterealtime.smack:smack-omemo-signal:$smackVersion"
|
||||||
compile "org.igniterealtime.smack:smack-tcp:$smackVersion"
|
implementation "org.igniterealtime.smack:smack-tcp:$smackVersion"
|
||||||
compile "org.igniterealtime.smack:smack-experimental:$smackVersion"
|
implementation "org.igniterealtime.smack:smack-experimental:$smackVersion"
|
||||||
|
|
||||||
// SQLCipher
|
// SQLCipher
|
||||||
compile 'net.zetetic:android-database-sqlcipher:3.5.9@aar'
|
implementation 'net.zetetic:android-database-sqlcipher:3.5.9@aar'
|
||||||
|
|
||||||
// Test stuff
|
// Test stuff
|
||||||
testImplementation 'junit:junit:4.12'
|
testImplementation 'junit:junit:4.12'
|
||||||
androidTestImplementation 'com.android.support.test:runner:1.0.1'
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
||||||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,8 +38,8 @@ import android.widget.Toast;
|
||||||
import butterknife.BindView;
|
import butterknife.BindView;
|
||||||
import butterknife.ButterKnife;
|
import butterknife.ButterKnife;
|
||||||
import butterknife.OnClick;
|
import butterknife.OnClick;
|
||||||
import de.vanitasvitae.slam.AbstractTextWatcher;
|
import de.vanitasvitae.slam.util.AbstractTextWatcher;
|
||||||
import de.vanitasvitae.slam.EditorActionDoneListener;
|
import de.vanitasvitae.slam.util.EditorActionDoneListener;
|
||||||
import de.vanitasvitae.slam.R;
|
import de.vanitasvitae.slam.R;
|
||||||
import de.vanitasvitae.slam.mvp.PresenterFactory;
|
import de.vanitasvitae.slam.mvp.PresenterFactory;
|
||||||
import de.vanitasvitae.slam.mvp.view.abstr.ThemedAppCompatActivity;
|
import de.vanitasvitae.slam.mvp.view.abstr.ThemedAppCompatActivity;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
* along with this program; if not, write to the Free Software Foundation,
|
* along with this program; if not, write to the Free Software Foundation,
|
||||||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
package de.vanitasvitae.slam;
|
package de.vanitasvitae.slam.util;
|
||||||
|
|
||||||
import android.text.Editable;
|
import android.text.Editable;
|
||||||
import android.text.TextWatcher;
|
import android.text.TextWatcher;
|
|
@ -15,7 +15,7 @@
|
||||||
* along with this program; if not, write to the Free Software Foundation,
|
* along with this program; if not, write to the Free Software Foundation,
|
||||||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
package de.vanitasvitae.slam;
|
package de.vanitasvitae.slam.util;
|
||||||
|
|
||||||
import android.view.KeyEvent;
|
import android.view.KeyEvent;
|
||||||
import android.view.inputmethod.EditorInfo;
|
import android.view.inputmethod.EditorInfo;
|
Loading…
Reference in a new issue