Loading .idea/misc.xml +1 −1 Original line number Diff line number Diff line Loading @@ -24,7 +24,7 @@ </value> </option> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/build/classes" /> </component> <component name="ProjectType"> Loading README.md +2 −1 Original line number Diff line number Diff line Loading @@ -9,10 +9,11 @@ This branch has merged OS_integration branch the 04/09/2018. Licence has been added check "LICENCE" file for details. Check the wiki for more information #### TODO: This is the current pending goal List: + finish to add licence to each file of the project + Handle lack of space remotly and localy + When a folder is remove from app's db, remove also syncedFile bound to it + issue # 0 : apps crash if request are too long and fails because of that Loading app/src/androidTest/java/io/eelo/drive/ExampleInstrumentedTest.java +9 −0 Original line number Diff line number Diff line /* * Copyright © Vincent Bourgmayer (/e/ foundation). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html */ package io.eelo.drive; import android.content.Context; Loading app/src/main/AndroidManifest.xml +8 −3 Original line number Diff line number Diff line <!-- Copyright © Vincent Bourgmayer (/e/ foundation). All rights reserved. This program and the accompanying materials are made available under the terms of the GNU Public License v3.0 which accompanies this distribution, and is available at http://www.gnu.org/licenses/gpl.html --> <!-- @author Vincent Bourgmayer --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="io.eelo.drive" android:sharedUserId="android.uid.system" > Loading Loading @@ -40,9 +48,6 @@ <service android:name=".services.ObserverService" android:enabled="true" android:exported="true"> <!--<intent-filter> <action android:name="drive.services.observerService" /> </intent-filter>--> </service> <service android:name=".services.OperationManagerService"/> Loading app/src/main/java/io/eelo/drive/database/DbHelper.java +9 −2 Original line number Diff line number Diff line /* * Copyright © Vincent Bourgmayer (/e/ foundation). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html */ package io.eelo.drive.database; import android.content.Context; Loading @@ -13,11 +21,10 @@ import io.eelo.drive.models.SyncedFileState; /** * Created by Vincent on 10/04/2018. * @author Vincent Bourgmayer * source: https://developer.android.com/training/data-storage/sqlite.html#java * https://vogella.developpez.com/tutoriels/android/utilisation-base-donnees-sqlite/ * * @TODO: rewrite it cleaner */ public final class DbHelper extends SQLiteOpenHelper { Loading Loading
.idea/misc.xml +1 −1 Original line number Diff line number Diff line Loading @@ -24,7 +24,7 @@ </value> </option> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/build/classes" /> </component> <component name="ProjectType"> Loading
README.md +2 −1 Original line number Diff line number Diff line Loading @@ -9,10 +9,11 @@ This branch has merged OS_integration branch the 04/09/2018. Licence has been added check "LICENCE" file for details. Check the wiki for more information #### TODO: This is the current pending goal List: + finish to add licence to each file of the project + Handle lack of space remotly and localy + When a folder is remove from app's db, remove also syncedFile bound to it + issue # 0 : apps crash if request are too long and fails because of that Loading
app/src/androidTest/java/io/eelo/drive/ExampleInstrumentedTest.java +9 −0 Original line number Diff line number Diff line /* * Copyright © Vincent Bourgmayer (/e/ foundation). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html */ package io.eelo.drive; import android.content.Context; Loading
app/src/main/AndroidManifest.xml +8 −3 Original line number Diff line number Diff line <!-- Copyright © Vincent Bourgmayer (/e/ foundation). All rights reserved. This program and the accompanying materials are made available under the terms of the GNU Public License v3.0 which accompanies this distribution, and is available at http://www.gnu.org/licenses/gpl.html --> <!-- @author Vincent Bourgmayer --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="io.eelo.drive" android:sharedUserId="android.uid.system" > Loading Loading @@ -40,9 +48,6 @@ <service android:name=".services.ObserverService" android:enabled="true" android:exported="true"> <!--<intent-filter> <action android:name="drive.services.observerService" /> </intent-filter>--> </service> <service android:name=".services.OperationManagerService"/> Loading
app/src/main/java/io/eelo/drive/database/DbHelper.java +9 −2 Original line number Diff line number Diff line /* * Copyright © Vincent Bourgmayer (/e/ foundation). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html */ package io.eelo.drive.database; import android.content.Context; Loading @@ -13,11 +21,10 @@ import io.eelo.drive.models.SyncedFileState; /** * Created by Vincent on 10/04/2018. * @author Vincent Bourgmayer * source: https://developer.android.com/training/data-storage/sqlite.html#java * https://vogella.developpez.com/tutoriels/android/utilisation-base-donnees-sqlite/ * * @TODO: rewrite it cleaner */ public final class DbHelper extends SQLiteOpenHelper { Loading