First commit: Just a collection of library sources from Github. Compiles, but doesn't work.

This commit is contained in:
Fabian Schlenz 2016-06-29 10:59:33 +02:00
commit 53d2b1674f
371 changed files with 13715 additions and 0 deletions

File diff suppressed because one or more lines are too long

BIN
additional/tl-builder.jar Normal file

Binary file not shown.

Binary file not shown.

36
build.xml Normal file
View File

@ -0,0 +1,36 @@
<project default="main">
<path id="classpath">
<fileset dir="lib/" includes="**/*.jar" />
</path>
<target name="clean">
<delete dir="build" />
</target>
<target name="build">
<mkdir dir="build/classes" />
<javac srcdir="src" destdir="build/classes" classpathref="classpath"/>
</target>
<target name="jar" depends="build">
<mkdir dir="build/jar" />
<jar destfile="build/jar/telegram_backup.jar"
basedir="build/classes">
<manifest>
<attribute name="Main-Class"
value="de.fabianonline.telegram_backup.Main" />
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java classname="de.fabianonline.telegram_backup.Main" fork="true" >
<classpath>
<path refid="classpath" />
<path location="build/jar/telegram_backup.jar" />
</classpath>
</java>
</target>
<target name="main" depends="clean,run" />
</project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More