Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 091ea628 authored by vince-bourgmayer's avatar vince-bourgmayer
Browse files

add Licence and author in each file

parent d996a81c
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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">
+2 −1
Original line number Diff line number Diff line
@@ -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
+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;
+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" >
@@ -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"/>
+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;
@@ -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