Skip to content

Commit

Permalink
close #19. lots of refactorings
Browse files Browse the repository at this point in the history
refactored whole project for simplier IDEA usage
refactored project structure to be more maven-specific
cleaned-up code
added lib folder with adb.exe and related binaries
  • Loading branch information
xSAVIKx committed May 30, 2016
1 parent 956edf4 commit 327a22e
Show file tree
Hide file tree
Showing 114 changed files with 6,313 additions and 6,372 deletions.
168 changes: 144 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,167 @@
#logs
*.log*
# Created by .ignore support plugin (hsz.mobi)
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
.idea
# User-specific stuff:
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/vcs.xml
.idea/jsLibraryMappings.xml

# Bin folder
bin
# Sensitive or high-churn files:
.idea/dataSources.ids
.idea/dataSources.xml
.idea/dataSources.local.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml

# Gradle:
.idea/gradle.xml
.idea/libraries

# Mongo Explorer plugin:
.idea/mongoSettings.xml

## File-based project format:
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
### Java template
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Log Files
*.log

# Package Files #
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
### NotepadPP template
# Notepad++ backups #
*.bak
### NetBeans template
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
.nb-gradle/
### Eclipse template


# Build folders
dist

######################
# Eclipse
######################
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
/src/main/resources/rebel.xml
.recommenders

# Eclipse Core
.project

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch
/target/
*.launch

# PyDev specific (Python IDE for Eclipse)
*.pydevproject

# CDT-specific (C/C++ Development Tooling)
.cproject

# JDT-specific (Eclipse Java Development Tools)
.classpath

# Java annotation processor (APT)
.factorypath

# PDT-specific (PHP Development Tools)
.buildpath

# sbteclipse plugin
.target

# Tern plugin
.tern-project

# TeXlipse plugin
.texlipse

# STS (Spring Tool Suite)
.springBeans

# Code Recommenders
.recommenders/
### Android template
# Built application files
*.apk
*.ap_

# Files for the ART/Dalvik VM
*.dex

# Java class files

# Generated files
gen/
out/

# Gradle files
.gradle/

# Local configuration file (sdk path, etc)

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# Intellij
*.iml

# Keystore files
*.jks
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2015 Iurii Sergiichuk
Copyright 2014-2016 Iurii Sergiichuk

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
AndroidScreencast
=================
[![Build Status DroneIO](https://drone.io/github.com/xSAVIKx/AndroidScreencast/status.png)](https://drone.io/github.com/xSAVIKx/AndroidScreencast/latest)

[![Build Status Travis-CI](https://travis-ci.org/xSAVIKx/AndroidScreencast.svg?branch=master)](https://travis-ci.org/xSAVIKx/AndroidScreencast)

AndroidScreencast - View and control your android device on PC.
AndroidScreencast - View and control your android iDevice on PC.

This project gives you opportunity to use your phone even with broken screen.

Expand Down
2 changes: 1 addition & 1 deletion app.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
adb.path=/usr/bin/adb
adb.path=adb.exe
default.window.width=1024
default.window.height=768
Binary file added lib/AdbWinApi.dll
Binary file not shown.
Binary file added lib/AdbWinUsbApi.dll
Binary file not shown.
Binary file added lib/adb.exe
Binary file not shown.
Binary file added lib/fastboot.exe
Binary file not shown.
Loading

0 comments on commit 327a22e

Please sign in to comment.