This article shares with you the main is Android Studio cannot be submitted in *.so file to svn the relevant solutions, come together to look at it, I hope that we have encountered such a solution to the problem has helped.
Solve:
# Windows version of Android Studio
1. Find the SVN plugin installation directory location:
2. Open the config file in this directory
3, the file contains "global-ignores =" line, uncomment, and put this "=" after the *.so *.so. [0-9] Delete, save exit, remember to shelf write after uncomment, there can be no gap in front!
4, Restart as, the file becomes red, you can add the
Windows can take advantage of SVN graphical GUI operations, and here's not the point
# Mac version of Android Studio
1, start the Mac terminal , enter the command line : VI ~/.subversion/config to open the configuration file .
2.then , Find this string in [Miscellany]:
# global-ignores = *.o *.lo *.la *.al. Libs *.so *.so. [0-9]* *.a *.pyc *.pyo
# *.rej *~ #*#. #*. *.swp. Ds_store
This is to say that SVN will automatically ignore the files with these suffixes at the time of submission , if it is necessary to submit so files to remove *.so, Then Replace the file with
Global-ignores = *.o *.lo *.la *.al. Libs *.so. [0-9]* *.a *.pyc *.pyo *.rej *~ #*#. #*. *.swp. Ds_store
Save Exit . then rebuild the as project and the file becomes red and you can add the
Other files can also be manipulated like this * * *
Source: Pinterest
Fix Android Studio cannot submit *.so files to SVN