File tree 24 files changed +419
-241
lines changed
src/com/cyanogenmod/updater
24 files changed +419
-241
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project (DvTonder)
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .customExceptions ;
@@ -22,4 +15,4 @@ public class NotEnoughSpaceException extends Exception {
22
15
public NotEnoughSpaceException (String msg ) {
23
16
super (msg );
24
17
}
25
- }
18
+ }
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .customTypes ;
@@ -50,4 +43,4 @@ public String getSpeedText() {
50
43
public String getRemainingTimeText () {
51
44
return remainingTimeText ;
52
45
}
53
- }
46
+ }
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com.cyanogenmod.updater.customTypes ;
18
11
19
- parcelable FullUpdateInfo ;
12
+ parcelable FullUpdateInfo ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .customTypes ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com.cyanogenmod.updater.customTypes ;
18
11
19
- parcelable UpdateInfo ;
12
+ parcelable UpdateInfo ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .customTypes ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .customTypes ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .customization ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com.cyanogenmod.updater.interfaces ;
@@ -22,4 +15,4 @@ interface IUpdateCheckService {
22
15
void checkForUpdates ();
23
16
void registerCallback (in IUpdateCheckServiceCallback cb );
24
17
void unregisterCallback (in IUpdateCheckServiceCallback cb );
25
- }
18
+ }
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com.cyanogenmod.updater.interfaces ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .misc ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .misc ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (C) 2012 The CyanogenMod Project (DvTonder)
2
+ * Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .receiver ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (C) 2012 The CyanogenMod Project (DvTonder)
2
+ * Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .receiver ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (C) 2012 The CyanogenMod Project
3
3
*
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
4
+ * * Licensed under the GNU GPLv2 license
7
5
*
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
6
+ * The text of the license can be found in the LICENSE file
7
+ * or at http://www.gnu.org/licenses/gpl-2.0.txt
15
8
*/
16
9
17
10
package com .cyanogenmod .updater .service ;
You can’t perform that action at this time.
0 commit comments