Skip to content

Commit

Permalink
core & plugin source, plugin assets
Browse files Browse the repository at this point in the history
  • Loading branch information
TuxPaper committed Nov 15, 2017
1 parent 75613e8 commit eab2edd
Show file tree
Hide file tree
Showing 2,672 changed files with 712,796 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,4 @@ google-services.json


# Exclude plugins since they take up lots of space.. use updatePlugins.sh to get them locally
/BiglyBT/src/coreFlavor/assets/plugins/
/BiglyBT/src/coreFlavor/assets/plugins.zip
/BiglyBT/libs/*_*.*.*.jar


/BiglyBT/libs/*_*.*.*.jar
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions BiglyBT/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ dependencies {
implementation 'com.google.android:flexbox:0.3.1'
implementation 'com.jaredrummler:android-device-names:1.1.5'
implementation 'com.android.support.constraint:constraint-layout:1.1.0-beta3'
compile project(path: ':core')
}

afterEvaluate {
Expand Down
Binary file removed BiglyBT/libs/BiglyBT-core.jar
Binary file not shown.
Binary file added BiglyBT/src/coreFlavor/assets/plugins.zip
Binary file not shown.
1 change: 1 addition & 0 deletions core/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
24 changes: 24 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apply plugin: 'java-library'

sourceSets {
main {

java {
srcDirs = ['core/src','uis/src','plugins']
}

resources {
includes = [ '**/*.properties' ]
srcDirs = ['core/src','uis/src','plugins']
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleDependency
compile 'commons-cli:commons-cli:1.4'
}

sourceCompatibility = "1.8"
targetCompatibility = "1.8"
3 changes: 3 additions & 0 deletions core/core/src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: com.biglybt.ui.Main
Class-Path: swt.jar commons-cli.jar log4j.jar junit.jar
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.biglybt.core.util.spi.AENameServiceDescriptor
34 changes: 34 additions & 0 deletions core/core/src/com/biglybt/activities/ActivitiesConstants.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Created on May 28, 2008
*
* Copyright (C) Azureus Software, Inc, All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

package com.biglybt.activities;


/**
* @author TuxPaper
* @created May 28, 2008
*
*/
public class ActivitiesConstants
{
public static final String TYPEID_HEADER = "Header";

public static final String TYPEID_LOCALNEWS = "LOCAL_NEWS_ITEM";
}
Loading

0 comments on commit eab2edd

Please sign in to comment.